-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
60 lines (56 loc) · 1.65 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
from setuptools import setup, find_packages
testing_requires = [
'twine>=3.0.0',
'pytest>=5.2',
'pytest-cov==2.11.1',
'pytest-mock==3.5.1',
'pytest-xdist==2.2.1'
]
mlflow_requires = [
'boto3',
'dill',
'mlflow'
]
docs_requires = [
'sphinx',
'nbsphinx',
'numpydoc'
]
setup(name='pyalcs',
version='3.0.0',
description='Implementation of Anticipatory Learning Classifiers',
keywords='acs lcs machine-learning reinforcement-learning openai',
url='https://github.com/ParrotPrediction/pyalcs',
author='Norbert Kozlowski',
author_email='nkozlowski@protonmail.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
project_urls={
'Source': 'https://github.com/ParrotPrediction/pyalcs',
'Tracking': 'https://github.com/ParrotPrediction/pyalcs/issues',
},
python_requires='>=3.5',
packages=find_packages(),
setup_requires=[
'pytest-runner',
'flake8'
],
install_requires=[
'numpy>=1.17.4',
'dataslots>=1.0.1'
],
extras_require={
'mlflow': mlflow_requires,
'testing': testing_requires,
'documentation': docs_requires
},
test_suite="tests",
include_package_data=False, # We don't have other types of files
zip_safe=False)