-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.26 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
version = '1.0dev'
description = \
"Get events from Bluemind and store them as ical " \
"calendar files. Send ical files to an FTP server."
long_description = open("README.rst").read() + "\n" \
+ open(os.path.join("docs", "HISTORY.rst")).read()
setup(name='sync-my-calendars',
version=version,
description=description,
long_description=long_description,
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='python calendar bluemind',
author='Sylvain Boureliou [sylvainb]',
author_email='[email protected]',
url='https://github.com/sylvainb/sync-my-calendars',
license='gpl',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
# -*- Extra requirements: -*-
'suds',
'icalendar',
],
entry_points={
}
)