-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
52 lines (33 loc) · 1.1 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -*- coding: utf-8 -*-
from setuptools import setup
try:
long_description = open('README.rst', 'rt').read()
except IOError:
long_description = ""
setup(
name="smarturls",
description="A URL construction helper for Django.",
long_description=long_description,
version="0.1.9",
author='Amit Upadhyay',
author_email="[email protected]",
url='https://amitu.com/smarturls/',
license='BSD',
py_modules=["smarturls"],
zip_safe=True,
install_requires=["Django>=1.5"],
tests_require=['tox'],
keywords=['helper', 'django', 'utils', 'regex', 'utility'],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development',
],
)