-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (39 loc) · 1.5 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
48
49
from setuptools import setup, find_packages
setup(
name='wools',
description="ADVA-Certified Alpakka Wools",
author="ADVA Optical Networking",
maintainer="Thomas Szyrkowiec",
maintainer_email="[email protected]",
license="Apache License 2.0",
setup_requires=open('requirements.setup.txt'),
install_requires=['alpakka', 'jinja2'],
use_scm_version={'local_scheme': 'dirty-tag'},
packages=find_packages(include=['wools', 'wools.*']),
package_data={'': ['*.jinja']},
entry_points={'alpakka_wools': [
'Java=wools.java',
'Akka=wools.java.akka',
'Jersey=wools.java.jersey',
]},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
'Topic :: Software Development :: Code Generators',
'Topic :: Utilities',
],
keywords=[
'alpakka', 'pyang', 'yang', 'wrappers', 'wrapper', 'wools', 'wool',
'templates', 'template', 'jinja2', 'jinja', 'python3',
],
)