-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 782 Bytes
/
setup.py
File metadata and controls
41 lines (38 loc) · 782 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup
dependencies = [
'Django',
'Pattern',
'PyYAML',
'distribute',
'dj-database-url',
'django-piston',
'django-tastypie',
'django-appconf',
'django-debug-toolbar',
'django-staticfiles',
'gunicorn',
'mimeparse',
'psycopg2',
'python-dateutil',
'virtualenv',
'wsgiref',
'nltk',
'numpy',
'scipy',
'scikit-learn',
]
project_name = 'pythia'
project_version = '0.1'
python_version = 'py2.7'
setup(
name=project_name,
version=project_version,
author="Luke Gutzwiller",
description=("Test our classifier"),
license="For internal use only",
install_requires=dependencies,
classifiers=[
"Development Status :: 2 - Beta",
],
zip_safe=False,
)