-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (29 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, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='GENetLib',
version='1.1.4',
description='A Python Library for Gene–environment Interaction Analysis via Deep Learning',
author='Yuhao Zhong',
author_email='[email protected]',
url='https://github.com/Barry57/GENetLib/',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'pandas',
'torch',
'scikit-learn',
'scipy',
'matplotlib',
'setuptools'
],
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
],
)