-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.04 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='KCnrtl',
version='0.4rc2',
description='Qt graphical client for the CNRTL french linguistic resources',
license = "GPLv3",
author="Bogdan Cordier",
author_email="bcord@hadaly.fr",
url="http://code.lm7.fr/p/kcnrtl/",
download_url="http://code.lm7.fr/p/kcnrtl/downloads/",
packages=find_packages(),
requires=['beautifulsoup4', 'httplib2', 'lxml'],
long_description=read('README.rst'),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"Environment :: Console",
"Topic :: Utilities",
"Natural Language :: French",
"Intended Audience :: Education"
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
entry_points={
'console_scripts': ['kcnrtl = kcnrtl.main:main'],
},
)