-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (22 loc) · 807 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (22 loc) · 807 Bytes
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
#!/usr/bin/env python
from setuptools import setup
setup(name="const",
version="0.1",
license="MIT",
description="Define constants and enums for Python",
long_description=open("README.md", "r").read(),
author="Zsolt Cserna",
author_email="cserna.zsolt@gmail.com",
url="http://www.github.com/csernazs/const",
test_suite="tests",
packages=["const"],
package_dir={"": "lib"},
keywords=["enum", "constant", "const"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
],
)