-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsetup.py
73 lines (61 loc) · 2.11 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
66
67
68
69
70
71
72
73
#!/usr/bin/env python
from __future__ import unicode_literals
import codecs
import os
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
import trackstats
class DjangoTests(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
from django.core import management
DSM = "DJANGO_SETTINGS_MODULE"
if DSM not in os.environ:
os.environ[DSM] = "trackstats.tests.settings"
management.execute_from_command_line()
def read_files(*filenames):
"""
Output the contents of one or more files to a single concatenated string.
"""
output = []
for filename in filenames:
f = codecs.open(filename, encoding="utf-8")
try:
output.append(f.read())
finally:
f.close()
return "\n\n".join(output)
# Dynamically calculate the version based on trackstats.VERSION.
version = trackstats.__version__
setup(
name="django-trackstats",
version=version,
url="http://github.com/pennersr/django-trackstats",
description="Statistics storage for Django",
long_description=read_files("README.rst"),
author="Raymond Penners",
author_email="raymond.penners@intenct.nl",
platforms=["any"],
packages=find_packages(),
include_package_data=True,
install_requires=["django>=3.2.13", "pytz"],
cmdclass={"test": DjangoTests},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
zip_safe=False,
)