-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
47 lines (40 loc) · 1.34 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
#!/usr/bin/env python
import sys
from setuptools import setup
import pyuml2
packages = ['pyuml2',
'pyuml2.uml',
'pyuml2.types']
if sys.version_info < (3, 3):
required_packages = ['pyecore-py2']
else:
required_packages = ['pyecore']
setup(
name='pyuml2',
version=pyuml2.__version__,
description=('A Python(ic) implementation of the UML2 metamodel'),
long_description=open('README.rst').read(),
keywords='model metamodel MDE UML',
url='https://github.com/pyecore/pyuml2',
author='Vincent Aranega',
author_email='vincent.aranega@gmail.com',
packages=packages,
package_data={'': ['README.rst', 'LICENSE', 'CHANGELOG.rst']},
include_package_data=True,
install_requires=required_packages,
tests_require=['pytest'],
license='BSD 3-Clause',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'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',
]
)