-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·48 lines (46 loc) · 1.45 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
#!/usr/bin/env python3
import os
from setuptools import setup
import versioneer
DESCRIPTION = \
"""The transwarp compiler parses Simple Type Format (.stf) input file,
and renders templates, using this data structure. This allows the
user to build documentation, test, protocol implementation and
everything else, from one common source"""
setup(
name = "transwarp",
author = "Christian Iversen",
author_email = "[email protected]",
version = versioneer.get_version(),
cmdclass = versioneer.get_cmdclass(),
zip_safe = True,
packages = [
"transwarp",
"transwarp.cmdline",
"transwarp.parser",
"transwarp.template",
"transwarp.util",
"transwarp.linker",
"transwarp.export",
],
entry_points = {
'console_scripts': [
'transwarp = transwarp.cmdline:main'
]
},
description = DESCRIPTION,
license = "GPLv3",
url = "https://github.com/chrivers/transwarp",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Other Scripting Engines",
"Programming Language :: Python :: 3",
"Topic :: Documentation",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Pre-processors",
"Topic :: Utilities",
],
)