-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (32 loc) · 979 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
34
35
from setuptools import setup, find_packages
setup(
name = "Partridge",
version = "0.1",
packages = ['partridge'],
#install requirements
install_requires = [
# 'Flask>=0.9',
# 'Flask-SQLAlchemy>=0.16',
# 'pycurl>=7.19.0',
# 'nltk>=2.0.4',
# 'progressbar>=2.3',
# 'pyinotify>=0.9.4',
# 'alembic>=0.4.2',
# 'numpy',
# 'Orange>=2.6',
# 'twitter>=1.9.4'
],
#program entrypoints
# entry_points ={
# 'console_scripts' : [
# 'partridged = partridge:run',
# 'plosget = partridge.tools.plosget:main',
# 'partridge-admin = partridge.tools.admincli:main'
# ]
# },
#author details
author = "James Ravenscroft",
author_email = "ravenscroftj@gmail.com",
description = "A toolkit for automated classification and indexing of large documents",
url="http://wwww.papro.org.uk/"
)