-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 1.36 KB
/
setup.py
File metadata and controls
41 lines (36 loc) · 1.36 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
from setuptools import setup, find_packages
with open('README_pypi.md') as f:
long_description = f.read()
setup(
name='OpenSpecimenAPIconnector',
version='0.9.5',
description='Python API commands to interact with OpenSpecimen',
long_description=long_description,
long_description_content_type='text/markdown', # This is important!
url='https://github.com/bibbox/OpenSpecimenAPIconnector.py/tree/master',
author='Christam Schorn, Simon Streit, Christoph Koch',
author_email='simon.streit@medunigraz.at',
license='BSD 2-clause',
install_requires=['pandas',
'numpy',
'requests',
'faker',
'names',
'xlsxwriter',
'openpyxl'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='Openspecimen, API, Python Openspecimen', # Optional,
packages=find_packages(where='src'),
package_dir={"":"src"}
)