-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py.in
executable file
·47 lines (44 loc) · 1.49 KB
/
setup.py.in
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
'''
Setup file for Linux distribution of the Data Modelling Toolchain (DMT).
Usage: python setup.py sdist --> to create a tarball
python setup.py install --> to install in python directory
'''
from setuptools import setup, find_packages
setup(
name='dmt',
version="2.2-@SCM_REVISION@",
packages=find_packages(),
author='Thanassis Tsiodras',
author_email='[email protected]',
description='TASTE Data Modelling Technologies based on ASN.1',
long_description=open('README.md').read(),
include_package_data=True,
url='http://taste.tuxfamily.org',
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5'
],
install_requires=[
'coverage>=3.7.1',
'pytest>=2.6.3',
'pycodestyle>=2.0.0',
'typing==3.5.2.2',
'mypy-extensions>=0.3.0',
],
entry_points={
'console_scripts': [
'asn2aadlPlus = dmt.asn2aadlPlus:main',
'asn2dataModel = dmt.asn2dataModel:main',
'aadl2glueC = dmt.aadl2glueC:main',
'badTypes = dmt.badTypes:main',
'msgPrinter = dmt.msgPrinter:main',
'msgPrinterASN1 = dmt.msgPrinterASN1:main',
'smp2asn = dmt.smp2asn:main',
'dmt = dmt.commonPy:print_version'
]
}
)