-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (40 loc) · 1.45 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
#!/usr/bin/env python
import sys
from setuptools import setup
import motra
packages = ['motra',
'motra.trace']
if sys.version_info < (3, 5):
sys.exit('Sorry, Python < 3.5 is not supported')
setup(
name='motra',
version=motra.__version__,
description=('M2M and M2T Models Transformations framework for PyEcore'),
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
keywords='model metamodel MDE M2M M2T traceability transformation',
url='https://github.com/pyecore/motra',
author='Vincent Aranega',
author_email='[email protected]',
packages=packages,
package_data={'': ['README.rst', 'LICENSE', 'CHANGELOG.rst']},
include_package_data=True,
setup_requires=['setuptools-pyecore'],
install_requires=['pyecore', 'Mako'],
tests_require=['pytest'],
license='BSD 3-Clause',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: BSD License',
]
)