forked from voronind/django-url-robots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 947 Bytes
/
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
from setuptools import setup
long_description = open('README.rst').read()
setup(
name='django2-url-robots',
version='3.2.1',
description='Django robots.txt generator',
long_description=long_description,
url='https://github.com/maximekl/django2-url-robots',
author='Maxime Klampas',
author_email='[email protected]',
license='Python Software Foundation License',
packages=['django2_url_robots', 'django2_url_robots.tests'],
package_data={'django2_url_robots': ['templates/*.*']},
platforms=["any"],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Environment :: Web Environment',
'Framework :: Django',
],
)