-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (25 loc) · 917 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (25 loc) · 917 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
setup(
name='ALIAS',
description='ALIAS',
author='Marcin Szczot, Roberto La Greca',
license='GNU',
url='https://github.com/alias-org/alias.git',
author_email='mszczot@gmail.com, roberto@robertolagreca.com',
version='0.2',
classifiers=[
'Development Status :: 3 - Alpha'
'Intended Audience :: Education',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3.6'
],
install_requires=['tables', 'ortools', 'parameterized', 'matplotlib', 'scipy', 'numpy', 'pycosat', 'pyparsing', 'networkx', 'sqlalchemy', 'py2neo'],
packages=find_packages(exclude=['docs', 'tests*']),
tests_require=['nose'],
)