-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
executable file
·83 lines (71 loc) · 2.38 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/env python
import os
import plynx
from setuptools import setup, find_packages
def parse_requirements(filename):
""" load requirements from a pip requirements file """
lineiter = (line.strip() for line in open(filename))
return [line for line in lineiter if line and not line.startswith("#")]
DIR = os.path.dirname(os.path.abspath(__file__))
install_requires = parse_requirements(os.path.join(DIR, "requirements.txt"))
# Extra dependencies for storage
dev_reqs = parse_requirements(os.path.join(DIR, "requirements-dev.txt"))
gs = [
"google-cloud-storage>=1.13.0",
]
s3 = [
"boto3>=1.9.62",
]
ssh = [
"paramiko>=2.4.2",
]
all_reqs = dev_reqs + gs + s3 + ssh
setup(
name="plynx",
version=plynx.__version__,
description="ML platform",
long_description="Interactive, Scalable, Shareable and Reproducible ML experiments",
url="https://plynx.com",
author="Ivan Khomyakov",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
],
keywords="data science, machine learning, pipeline, workflow, experiments",
packages=find_packages(exclude=["scripts", "docker"]),
install_requires=install_requires,
extras_require={
"all": all_reqs,
"dev": dev_reqs,
"gs": gs,
"s3": s3,
"ssh": ssh,
},
package_data={},
entry_points={
"console_scripts": [
"plynx=plynx.bin:main",
],
},
project_urls={
"Demo": "https://plynx.com",
"Source": "https://github.com/plynx-team/plynx",
},
# plynx.graph.base_nodes.collection uses reference to __file__
zip_safe=False,
)