-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·33 lines (32 loc) · 944 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
33
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
import scorpion
setup(name="scorpion",
version=scorpion.__version__,
description="scorpion",
license="MIT",
author="Eugene Wu",
author_email="[email protected]",
url="http://github.com/sirrice/scorpion",
include_package_data = True,
packages = find_packages(),
package_dir = {'scorpion' : 'scorpion'},
scripts = [
'tests/unit/adjgraph.py',
'tests/unit/sharedobj.py',
'tests/unit/render.py',
'tests/unit/sharedobj.py',
'bin/fixnulls.py',
],
install_requires = [
'psycopg2', 'sqlalchemy',
'Orange', 'numpy', 'scipy', 'scikit-learn',
'matplotlib', 'pyparsing', 'rtree',
'click'
],
keywords= "")