forked from interpreters/pypreprocessor
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.38 KB
/
setup.py
File metadata and controls
39 lines (36 loc) · 1.38 KB
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
#!/usr/bin/env python
# pypreprocessor's setup.py
from distutils.core import setup
from pypreprocessor import __version__, __author__
setup(
name = "pypreprocessor",
py_modules = ['pypreprocessor'],
version = __version__,
description = "Run c-style preprocessor directives in python modules",
author = __author__,
author_email = "evanplaice@gmail.com",
url = "https://github.com/evanplaice/pypreprocessor",
packages=['pypreprocessor'],
long_description = open('README.md').read(),
license = open('LICENSE').read(),
keywords = ["python", "preprocessor", "meta"],
platforms = "all",
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Pre-processors",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Code Generators",
]
)
# To update run
# python setup.py sdist upload -r pypi