-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
27 lines (24 loc) · 824 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
from setuptools import setup, find_packages
exec(open('pypgx/version.py').read())
requirements = ['fuc', 'scikit-learn']
setup(
name='pypgx',
version=__version__,
author='Seung-been "Steven" Lee',
author_email='[email protected]',
description='A Python package for pharmacogenomics (PGx) research',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
url='https://github.com/sbslee/pypgx',
packages=find_packages(),
license='MIT',
install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License'
],
package_data={
'pypgx.api': ['beagle.22Jul22.46e.jar', 'data/*']
},
entry_points={'console_scripts': ['pypgx=pypgx.__main__:main']}
)