-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
43 lines (38 loc) · 1.49 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
from setuptools import setup, find_packages
def read(filename):
import os
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name="djurl",
version=__import__('djurl').get_version(),
author="Christopher Ventura",
author_email="[email protected]",
description="Simple yet helpful library for writing Django urls by an easy, short an intuitive way.",
url="https://github.com/venturachrisdev/djurl",
license="MIT",
keywords="django url urlparse web python regex",
packages=find_packages(exclude=['tests']),
include_package_data=True,
test_suite="tests",
long_description=read('README.md'),
install_requires=['django'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Pre-processors'
]
)
print(read('README.md'))