-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (34 loc) · 1.47 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
from setuptools import setup
setup(
name='castorapi',
packages=['castorapi'],
version='0.3', # Start with a small number and increase with changes
license='MIT',
description='Python API wrapper for Castor EDC to ' + \
'fetch data from you clinical study.',
author='Wouter V. Potters', # Type in your name
author_email='[email protected]', # Type in your E-Mail
# Provide either the link to your github or to your website
url='https://github.com/wouterpotters/castorapi',
# I explain this later on
download_url='https://github.com/wouterpotters/' + \
'castorapi/archive/master.zip',
keywords=['Castor EDC', 'API', 'Castor', 'Clinical study', 'database',
'data science'], # Keywords that define your package best
install_requires=[ # I get to this in a second
'pandas>=1.0',
'requests>=2.23',
'progressbar2>=3.5'
],
long_description=open('README.md').read(),
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
'Development Status :: 3 - Alpha',
# Define that your audience are developers
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
# Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3'
],
)