-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
29 lines (28 loc) · 942 Bytes
/
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
from setuptools import setup
setup(
name="remind",
version="0.19.2",
description="Remind Python library",
long_description=open("README.rst").read(),
author="Jochen Sprickerhof",
author_email="[email protected]",
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",
],
install_requires=["python-dateutil", "vobject"],
py_modules=["remind", "ics_compare"],
entry_points={
"console_scripts": [
"rem2ics = remind:rem2ics",
"ics2rem = remind:ics2rem",
]
},
)