-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (30 loc) · 1.13 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·33 lines (30 loc) · 1.13 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
#!/usr/bin/env python
from setuptools import setup
setup(
name = "mylit",
version = "0.1.2",
author = "Stephan Wenger",
author_email = "wenger@cg.cs.tu-bs.de",
description = "Literate programming for Python",
license = "MIT",
keywords = "literate programming",
long_description = open("README.rst").read(),
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Markup :: HTML",
],
download_url = "http://pypi.python.org/pypi/mylit",
url = "http://packages.python.org/mylit",
setup_requires=["pygments"],
py_modules = ["mylit"], # TODO console_scripts entry point
)