-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.11 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
#!/usr/bin/env python
'''
Setup script.
To build _spexygen_ install:
[sudo] python setup.py sdist bdist_wheel
'''
from setuptools import setup
setup(
name="spexygen",
version="2.2.2",
author="Quantum Leaps",
author_email="info@state-machine.com",
description="Traceable specifications based on doxygen",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/QuantumLeaps/spexygen",
license="MIT",
platforms="any",
py_modules=["spexygen"],
entry_points={"console_scripts": ["spexygen = spexygen:main"]},
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Documentation",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3"],
)