icalendar/setup.py

38 wiersze
1.0 KiB
Python
Czysty Zwykły widok Historia

2011-08-24 21:18:36 +00:00
import os
import setuptools
2005-04-04 16:47:58 +00:00
version = '3.0'
2005-04-04 16:47:58 +00:00
2011-08-24 21:18:36 +00:00
setuptools.setup(
2011-08-17 19:36:01 +00:00
name='icalendar',
version=version,
description="iCalendar parser/generator",
2011-08-24 21:18:36 +00:00
long_description=open("README.rst").read() + \
open(os.path.join('docs', 'changelog.rst')).read(),
2011-08-17 19:36:01 +00:00
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',
2011-08-24 21:18:36 +00:00
maintainer="Rok Garbas",
maintainer_email="rok@garbas.si",
2011-08-17 19:36:01 +00:00
author='MaxM',
author_email='max@mxm.dk',
2011-08-24 21:18:36 +00:00
url='https://gihub.com/collective/icalendar',
2011-08-17 19:36:01 +00:00
license='GPL',
2011-08-24 21:18:36 +00:00
packages=setuptools.find_packages('src'),
2011-08-17 19:36:01 +00:00
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
],
extras_require={
'test': [
'unittest2',
],
},
)