icalendar/setup.py

35 wiersze
939 B
Python
Czysty Zwykły widok Historia

2011-08-17 19:36:01 +00:00
from setuptools import setup
from setuptools import find_packages
2005-04-04 16:47:58 +00:00
2011-08-18 10:30:59 +00:00
version = '2.2'
2005-04-04 16:47:58 +00:00
2011-08-17 19:36:01 +00:00
setup(
name='icalendar',
version=version,
description="iCalendar parser/generator",
long_description=open("README.rst").read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
],
keywords='calendar calendaring ical icalendar event todo journal recurring',
author='MaxM',
author_email='max@mxm.dk',
url='https://gihub.com/collective/iCalendar',
license='GPL',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
],
extras_require={
'test': [
'unittest2',
],
},
)