-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
60 lines (54 loc) · 2.1 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='digen',
version='0.0.5',
author='Patryk Orzechowski',
author_email=('[email protected]'),
packages=['digen'],
package_dir={'digen' : 'digen'},
package_data={'digen': ['digen/data/*.pkl']},
include_package_data=True,
url='https://github.com/EpistasisLab/digen',
description='DIGEN: Diverse Generative ML Benchmark',
long_description=long_description,
long_description_content_type='text/markdown',
zip_safe=True,
install_requires=['pandas>=1.0.5',
'numpy>=1.21',
'scikit-learn>=0.22.2',
'optuna>=1.3.0',
'importlib-resources',
'matplotlib',
'deap>=1.3.0',
'xgboost>=1.3.2',
'requests',
'lightgbm>=3.1.1',
'seaborn>=0.11.2'
],
extras_require={
'dev': ['scipy', 'pandas-profiling'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
keywords=['data mining', 'benchmark', 'machine learning', 'data analysis', 'datasets', 'data science']
)