-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (48 loc) · 1.35 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
45
46
47
48
49
50
from setuptools import setup
from babel.messages import frontend as babel
version = '0.1'
setup(
name='deplane',
version=version,
description="Data Element Profile docx generator",
long_description="""
Generate a Data Element Profile docx file based on a ckanext-recombinant
schema. A Data Element Profile docx file is easier for users to
understand, share and edit than the ckanext-recombinant JSON/YAML
schema and choice files that it represents.
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Government of Canada',
author_email='[email protected]',
url='',
license='MIT',
packages=['deplane'],
include_package_data=True,
zip_safe=False,
install_requires=[
'python-docx',
'click',
'requests',
'lxml',
'markdown',
'pyyaml',
'babel'
],
python_requires='>3.6',
entry_points='''
[console_scripts]
deplane=deplane.cli:cli
''',
cmdclass = {
'compile_catalog': babel.compile_catalog,
'extract_messages': babel.extract_messages,
'init_catalog': babel.init_catalog,
'update_catalog': babel.update_catalog
},
message_extractors={
'deplane': [
('**.py', 'python', None),
],
}
)