-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
executable file
·39 lines (34 loc) · 1.21 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
''' Installation script for python fromscratchtoml package'''
from setuptools import find_packages, setup
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
linux_testenv = [
'pytest-cov',
'python-coveralls',
'sklearn',
'scipy',
]
setup(
name='fromscratchtoml',
version='0.0.2',
description=' An intuitive machine learning library for python.',
install_requires=install_requires,
extras_require={
'test': linux_testenv,
'docs': ['jupyter', 'Flask>=0.10.1', 'Jinja2>=2.7', 'MarkupSafe>=0.18', 'Werkzeug>=0.9.1',
' itsdangerous>=0.22', 'flask-flatpages', 'frozen-flask', 'flask-assets'] +
['sphinx', 'sphinxcontrib-napoleon', 'sphinxcontrib.programoutput']
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3.0',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
url='https://github.com/markoxor/fromscratchtoml',
author='markroxor',
author_email='[email protected]',
license='GPL-3.0',
packages=find_packages(),
)