-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (30 loc) · 907 Bytes
/
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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name = 'pyiptmnet',
packages = ['pyiptmnet'], # this must be the same as the name above
version = '0.1.7',
description = 'Python client for iPTMNet REST API - https://research.bioinformatics.udel.edu/iptmnet/',
long_description = long_description,
long_description_content_type="text/markdown",
author = 'Sachn Gavali',
author_email = '[email protected]',
url = 'https://github.com/udel-cbcb/pyiptmnet', # use the URL to the github repo
download_url = 'https://github.com/udel-cbcb/pyiptmnet/archive/0.1.7.tar.gz',
keywords = ['iPTMnet', 'API', 'Client', 'REST-API'], # arbitrary keywords
classifiers = [],
install_requires=[
'certifi',
'chardet',
'idna',
'jsonschema',
'numpy',
'pandas',
'python-dateutil',
'pytz',
'requests',
'six',
'urllib3'
]
)