forked from jazzband/django-recurrence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (53 loc) · 1.78 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
import os
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options(self):
self.test_args = []
self.test_suite = True
super().finalize_options()
def run_tests(self):
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="django-recurrence",
version="1.10.2",
license="BSD",
description="Django utility wrapping dateutil.rrule",
long_description=long_description,
long_description_content_type="text/markdown",
author="Tamas Kemenczy",
author_email="tamas.kemenczy@gmail.com",
url="https://github.com/django-recurrence/django-recurrence",
classifiers=(
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
),
install_requires=("Django", "pytz", "python-dateutil"),
packages=("recurrence", "recurrence.migrations"),
package_dir={"recurrence": "recurrence"},
package_data={
"recurrence": [
os.path.join("static", "*.css"),
os.path.join("static", "*.png"),
os.path.join("static", "*.js"),
os.path.join("locale", "*.po"),
os.path.join("locale", "*.mo"),
]
},
zip_safe=False,
include_package_data=True,
cmdclass={"test": PyTest},
)