forked from collective/icalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.24 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
import os
import setuptools
version = '3.1'
shortdesc = 'iCalendar parser/generator'
longdesc = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
longdesc += open(os.path.join(os.path.dirname(__file__),
'docs', 'changelog.rst')).read()
longdesc += open(os.path.join(os.path.dirname(__file__), 'LICENSE.rst')).read()
tests_require = ['unittest2']
setuptools.setup(
name='icalendar',
version=version,
description=shortdesc,
long_description=longdesc,
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="rok@garbas.si",
author='MaxM',
author_email='max@mxm.dk',
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=[
'setuptools',
'pytz',
],
extras_require={
'test': tests_require
})