-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
47 lines (45 loc) · 1.73 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="django-ical",
description="iCal feeds for Django based on Django's syndication feed framework.",
long_description="\n".join(
[
open("README.rst", encoding="utf-8").read(),
open("CHANGES.rst", encoding="utf-8").read(),
]
),
keywords="ical calendar django syndication feed",
author="Ian Lewis",
author_email="[email protected]",
maintainer="Jazzband",
maintainer_email="[email protected]",
license="MIT License",
url="https://github.com/jazzband/django-ical",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Environment :: Plugins",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=["django>=3.2", "icalendar>=4.0.3", "django-recurrence>=1.11.1"],
packages=find_packages(),
test_suite="tests.main",
use_scm_version=True,
setup_requires=["setuptools_scm"],
)