-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
65 lines (61 loc) · 2.16 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
53
54
55
56
57
58
59
60
61
62
63
64
65
import os
from setuptools import setup, find_packages
try:
readme = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
except:
readme = ''
template_dir = "src/qartez/templates/qartez"
templates = [os.path.join(template_dir, f) for f in os.listdir(template_dir)]
version = '0.8.1'
setup(
name='django-qartez',
version=version,
description="Additional XML sitemap functionality for Django",
long_description=readme,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"License :: OSI Approved :: GNU Lesser General Public License v2 or "
"later (LGPLv2+)",
],
keywords='xml sitemaps, images sitemaps, django, app, python',
author='Artur Barseghyan',
author_email='[email protected]',
license='GPL 2.0/LGPL 2.1',
project_urls={
"Bug Tracker": "https://github.com/barseghyanartur/django-qartez/"
"issues",
"Documentation": "https://django-qartez.readthedocs.io/",
"Source Code": "https://github.com/barseghyanartur/django-qartez/",
"Changelog": "https://django-qartez.readthedocs.io/en/latest/"
"changelog.html",
},
url='https://github.com/barseghyanartur/django-qartez/',
package_dir={'': 'src'},
packages=find_packages(where='./src'),
package_data={'qartez': templates},
include_package_data=True,
install_requires=[
'six>=1.1.0',
'django-nine>=0.1.7',
],
tests_require=[
'coverage',
'factory_boy',
'Faker',
'pytest-cov',
'pytest',
'tox',
]
)