forked from matthewcocook/django-ical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (47 loc) · 1.75 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
#!/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 :: 1.11',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.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.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'Django>=1.11',
'icalendar>=4.0.3',
'django-recurrence>=1.10.0',
],
packages=find_packages(),
test_suite='tests.main',
use_scm_version=True,
setup_requires=['setuptools_scm'],
)