-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.39 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
from setuptools import find_packages
from setuptools import setup
long_description = """
hku_diabetes is a data analytics module tailored made for
analysing diabetes clinical data collected at Queen Mary Hospital
of the Hong Kong University.
Read the documentation at:
hku_diabetes supports python 3.5-3.7
and is distributed under the MIT license.
"""
setup(name='hku_diabetes',
version='0.0.2',
description='HKU Diabetes Data Anlytics',
long_description=long_description,
author='Tim Lui',
author_email='[email protected]',
url='https://github.com/luithw/hku_diabetes',
license='MIT',
install_requires=['lxml>=4.2.5',
'matplotlib>=3.0.0',
'numpy>=1.15.2',
'pandas>=0.23.4',
'scipy>=1.1.0',
'six>=1.9.0',
'xlrd>=1.1.0'
],
extras_require={
'tests': ['pytest'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages())