-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
49 lines (42 loc) · 1.54 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
# -*- coding: utf-8 -*-
import pathlib
from pkg_resources import VersionConflict, require
try:
require('setuptools>=38.3')
except VersionConflict:
import sys
print('Error: version of setuptools is too old (<38.3)!')
sys.exit(1)
from setuptools import setup, find_namespace_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
# The text of the README file
README = (pathlib.Path(__file__).parent / 'README.md').read_text()
if __name__ == '__main__':
setup(
name='dswizard',
version='0.2.6',
description='DataScience Wizard for automatic assembly of machine learning pipelines',
long_description=README,
long_description_content_type='text/markdown',
author='Marc Zoeller',
author_email='[email protected]',
url='https://github.com/Ennosigaeon/dswizard',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
packages=find_namespace_packages(include=['dswizard.*', 'automl.*']),
python_requires='>=3.7',
include_package_data=True,
install_requires=requirements,
extras_require={
'visualization': ['pygraphviz~=1.9'],
'smac': ['smac~=1.2']
},
keywords=['automl', 'machine learning', 'pipeline synthesis']
)