forked from jspricke/python-remind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 1.08 KB
/
setup.py
File metadata and controls
34 lines (30 loc) · 1.08 KB
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
from setuptools import setup
setup(name='remind',
version='0.9.0',
description='''
Remind Python library
''',
author='Jochen Sprickerhof',
author_email='remind@jochen.sprickerhof.de',
license='GPLv3+',
url='https://github.com/jspricke/python-remind',
keywords=['Remind'],
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: Office/Business :: Scheduling',
'Topic :: Software Development :: Libraries :: Python Modules',
],
setup_requires=['nose>=1.3', 'coverage'],
install_requires=['python-dateutil', 'python-card-me'],
py_modules=['remind', 'ics_compare'],
entry_points={
'console_scripts': [
'rem2ics = remind:rem2ics',
'ics2rem = remind:ics2rem',
'icscomp = ics_compare:main',
]
},
test_suite='nose.collector',)