-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
29 lines (26 loc) · 883 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
import os
from setuptools import setup, find_packages
import supertagging
try:
reqs = open(os.path.join(os.path.dirname(__file__),'requirements.txt')).read()
except (IOError, OSError):
reqs = ''
setup(
name = 'supertagging',
version=supertagging.get_version(),
description = 'An interface to the Open Calais service for semantic markup.',
author = 'Jose Soares',
author_email = '[email protected]',
url = 'https://github.com/callowayproject/django-supertagging',
packages = find_packages(),
include_package_data = True,
install_requires = reqs,
classifiers = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Operating System :: OS Independent',
]
)