forked from markroxor/fromscratchtoml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 902 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
''' Installation script for python omega package'''
from setuptools import find_packages, setup
linux_testenv = [
'pytest-cov',
'python-coveralls',
]
setup(
name='omega',
version='0.0.1',
description=' An intuitive machine learning library for python.',
install_requires=[
'numpy >= 1.14.2',
],
extras_require={
'test': linux_testenv,
'docs': linux_testenv + ['sphinx', 'sphinxcontrib-napoleon', 'travis-sphinx', 'sphinxcontrib.programoutput']
},
classifiers=[
'Development Status :: Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
url='https://github.com/jellAIfish/omega',
license='GPL-3.0',
packages=find_packages(),
)