forked from CitrineInformatics/citrine-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (41 loc) · 1.41 KB
/
setup.py
File metadata and controls
44 lines (41 loc) · 1.41 KB
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
from setuptools import setup, find_packages
from os import path
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
about = {}
with open(path.join(this_directory, 'src', 'citrine', '__version__.py'), 'r') as f:
exec(f.read(), about)
setup(name='citrine',
# Update this in src/citrine/__version__.py
version=about['__version__'],
url='http://github.com/CitrineInformatics/citrine-python',
description='Python library for the Citrine Platform',
long_description=long_description,
long_description_content_type='text/markdown',
author='Citrine Informatics',
package_dir={'': 'src'},
packages=find_packages(where='src'),
install_requires=[
"requests>=2.25.1,<3",
"pyjwt>=1.7.1,<2",
"arrow>=0.15.4,<0.16",
"gemd>=1.0.0,<2",
"boto3>=1.17.93,<2",
"botocore>=1.20.95,<2",
"deprecation>=2.0.7,<3",
"urllib3>=1.26.5,<2"
],
extras_require={
"builders": [
"pandas>=1.1.0,<2"
]
},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)