forked from collective/icalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1005 Bytes
/
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
import os
import setuptools
version = '3.0.1b1'
setuptools.setup(
name='icalendar',
version=version,
description="iCalendar parser/generator",
long_description=open("README.rst").read() + \
open(os.path.join('docs', 'changelog.rst')).read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
],
keywords='calendar calendaring ical icalendar event todo journal '
'recurring',
maintainer="Rok Garbas",
maintainer_email="[email protected]",
author='MaxM',
author_email='[email protected]',
url='https://github.com/collective/icalendar',
license='BSD',
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=['pytz'],
extras_require={
'test': ['unittest2'],
},
)