-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
34 lines (32 loc) · 1.25 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
#!/usr/bin/env python
from distutils.core import setup
setup(name='CoTeTo',
version='1.0',
description='Code Templating Tool - code generation framework based on templates',
author='Joerg Raedler (UdK Berlin)',
author_email='jraedler@udk-berlin.de',
url='https://github.com/UdK-VPT/CoTeTo',
# contents
packages=['CoTeTo', 'CoTeTo.Loaders'],
package_data={'CoTeTo': ['res/*']},
scripts=['scripts/CoTeTo-cli.py', 'scripts/CoTeTo-gui.py'],
# dependencies
install_requires=['mako', 'jinja2', 'PyQt5'],
# classifiers
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: Qt",
"Environment :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Code Generators",
"Topic :: Scientific/Engineering",
"Topic :: Utilities"
],
)