-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
34 lines (32 loc) · 1.23 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
33
34
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), "README.rst")) as fh:
readme_content = fh.read()
setup(
name="urlman",
version="2.0.2",
description="Django URL pattern helpers",
long_description=readme_content,
url="https://github.com/andrewgodwin/urlman",
packages=["urlman"],
author="Andrew Godwin",
author_email="andrew@aeracode.org",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
],
)