-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
39 lines (36 loc) · 1.15 KB
/
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
36
37
38
39
import os
from setuptools import setup, find_packages
import sulci
try:
reqs = open(os.path.join(os.path.dirname(__file__),
'requirements.txt')).read().split()
reqs = [req for req in reqs if not req.startswith(('git+', 'hg+'))]
except (IOError, OSError):
reqs = ''
print reqs
setup(
name='sulci',
version=sulci.get_version(),
description='French textmining tool based on Liberation corpus and thesaurus',
author='Yohan Boniface',
author_email='[email protected]',
url='https://github.com/yohanboniface/sulci',
packages=find_packages(),
include_package_data=True,
package_data={'sulci': ['corpus/*', 'templates/sulci/*']},
install_requires=reqs,
scripts=[
'sulci/bin/sulci_cli.py',
'sulci/bin/sulci_monit.py',
'sulci/bin/sulci_train.py',
'sulci/bin/sulci_validate.py',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: OS Independent',
]
)