-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (26 loc) · 905 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
from setuptools import setup, find_packages
setup(name='symbionic',
version='0.22',
description='Code base for the Symbionic project',
url='https://github.com/matthijscox/symbionic',
author='Matthijs Cox',
author_email='matthijs.cox@gmail.com',
license='GNU General Public License v3 (GPLv3)',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=[
'numpy',
'pandas',
'scipy',
'matplotlib'
],
zip_safe=False,
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
])