forked from pyecore/pyecore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 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
#!/usr/bin/env python
import sys
from setuptools import setup
if sys.version_info < (3, 3):
sys.exit('Sorry, Python < 3.3 is not supported')
packages = ['pyecore',
'pyecore.resources',
'pyecore.type']
setup(
name='pyecore',
version='0.8.6',
description=('A Python(ic) Implementation of the Eclipse Modeling '
'Framework (EMF/Ecore)'),
long_description=open('README.rst').read(),
keywords='model metamodel EMF Ecore MDE',
url='https://github.com/pyecore/pyecore',
author='Vincent Aranega',
author_email='[email protected]',
packages=packages,
package_data={'': ['README.rst', 'LICENSE', 'CHANGELOG.rst']},
include_package_data=True,
install_requires=['ordered-set',
'lxml',
'defusedxml'],
tests_require=['pytest'],
license='BSD 3-Clause',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: BSD License',
]
)