-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (43 loc) · 1.36 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
44
45
46
47
48
49
50
#!/usr/bin/env python
from setuptools import setup, find_packages
PROJECT = 'ical2org'
VERSION = '1.0'
try:
long_description = open('README', 'rt').read()
except IOError:
long_description = ''
setup(
name = PROJECT,
description = 'Convert iCal files to emacs org-mode data',
long_description = long_description,
version = VERSION,
# Meta-data
author = 'Doug Hellmann',
author_email = '[email protected]',
url = 'http://www.doughellmann.com/projects/ical2org/',
download_url = 'http://www.doughellmann.com/downloads/%s-%s.tar.gz' % \
(PROJECT, VERSION),
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Operating System :: MacOS :: MacOS X',
'Topic :: Communications',
'Topic :: Office/Business',
'Topic :: Office/Business :: Scheduling',
],
# What goes into the distribution?
packages = find_packages(),
include_package_data = True,
entry_points = {
'console_scripts': [ 'ical2org = ical2org.app:main' ],
},
# What do we need to work?
install_requires=[
'distribute',
'pytz>=2009r',
'vobject>=0.8.1c',
],
)