-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (42 loc) · 1.62 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
import codecs
import os.path
import re
from setuptools import setup
def find_version(*file_paths):
version_file = codecs.open(os.path.join(os.path.dirname(__file__),
*file_paths), 'rb', encoding='utf8').read()
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
setup(
name='django-redirect-urls',
version=find_version('redirect_urls', '__init__.py'),
description='URL redirecting and rewriting in code.',
long_description=open('README.md').read(),
author='Paul McLanahan',
author_email='[email protected]',
url='https://github.com/pmac/django-redirect-urls/',
license='Apache-2.0',
packages=['redirect_urls'],
include_package_data=True,
zip_safe=False,
keywords='django redirects',
install_requires=['Django>=1.11'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'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',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)