This repository has been archived by the owner on Nov 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
44 lines (41 loc) · 1.52 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
40
41
42
43
44
from setuptools import setup, find_packages
import aardtools
install_requires = ['PyICU >= 1.0',
'aarddict >= 0.9.0',
'mwlib.cdb',
'mwlib.xhtml',
'pyyaml',
'lxml',
'cssselect',
'couchdb',
'mwlib >= 0.14.1']
setup(
name = aardtools.__name__,
version = aardtools.__version__,
packages = find_packages(),
entry_points = {
'console_scripts': ['aardcompile = aardtools.compiler:main',
'aardc = aardtools.compiler:main',
'aard-siteinfo = aardtools.wiki.fetchsiteinfo:main',
]
},
install_requires = install_requires,
package_data={'aardtools.wiki': [
'licenses/*.txt',
'filters/*.yaml']},
author = "Igor Tkach",
author_email = "[email protected]",
description = '''Tools to create dictionaries in aarddict format.''',
license = "GPL 3",
keywords = ['aarddict', 'aardtools', 'wiki', 'wikipedia', 'wordnet',
'xdxf', 'dict', 'dictionary'],
url = "http://aarddict.org",
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Programming Language :: Python',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Utilities',
'Environment :: Console'
]
)