This repository was archived by the owner on Mar 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.4 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.4 KB
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
#!/usr/bin/env python
from setuptools import setup
packages = ['pyecore',
'pyecore.resources',
'pyecore.type']
setup(
name='pyecore-py2',
version='0.9.0',
description=('A Python(ic) Implementation of the Eclipse Modeling '
'Framework (EMF/Ecore), Python 2.7 backport'),
long_description=open('README.rst').read(),
keywords='model metamodel EMF Ecore MDE',
url='https://github.com/pyecore/pyecore-py2',
author='Vincent Aranega',
author_email='vincent.aranega@gmail.com',
packages=packages,
package_data={'': ['README.rst', 'LICENSE', 'CHANGELOG.rst']},
include_package_data=True,
install_requires=['enum34',
'chainmap',
'backports.functools_lru_cache',
'ordered-set',
'singledispatch',
'lxml',
'defusedxml',
'restrictedpython>=4.0b6'],
tests_require=['pytest'],
license='BSD 3-Clause',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: BSD License',
]
)