-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (37 loc) · 1.49 KB
/
setup.py
File metadata and controls
executable file
·41 lines (37 loc) · 1.49 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
40
41
#!/usr/bin/env python
"""The usual package management stuff."""
from setuptools import setup
setup(
name="ook",
author="Zero Piraeus",
author_email="z@etiol.net",
description=open("ook/__init__.py").readlines()[0].strip('"\n'),
install_requires=["six"],
keywords="version sensitive monkey patch",
license="GPLv3",
long_description=open("README.rst").read(),
packages=["ook"],
setup_requires=["setuptools_hg"],
url="https://bitbucket.org/schesis/ook",
version=open("ook/_version.py").readlines()[-1].split()[-1].strip("\"'"),
classifiers=(
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
),
)