forked from xaralis/django-static-sitemaps
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (39 loc) · 1.29 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
import static_sitemaps
setup(
name='django-static-sitemaps',
version=static_sitemaps.__versionstr__,
description='Tool for generating sitemaps as static files',
long_description='\n'.join((
'',
)),
author='Filip Varecha',
author_email='[email protected]',
license='BSD',
url='http://github.com/xaralis/django-static-sitemaps',
packages=(
'static_sitemaps',
'static_sitemaps.management',
'static_sitemaps.management.commands'),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Framework :: Django",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
'setuptools>=0.6b1',
'six>=1.11.0',
'Django>=1.8',
],
)