forked from pimutils/khal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·56 lines (53 loc) · 1.54 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
51
52
53
54
55
56
#!/usr/bin/env python3
from setuptools import setup
requirements = [
'click>=3.2',
'icalendar',
'urwid',
'pyxdg',
'pytz',
'vdirsyncer',
'python-dateutil',
'configobj',
'tzlocal>=1.0',
]
extra_requirements = {
'proctitle': ['setproctitle'],
}
setup(
name='khal',
description='A CalDAV based calendar',
long_description=open('README.rst').read(),
author='Christian Geier',
author_email='[email protected]',
url='http://lostpackets.de/khal/',
license='Expat/MIT',
packages=['khal', 'khal/ui', 'khal/khalendar', 'khal/settings'],
package_data={'khal': [
'settings/default.khal',
'settings/khal.spec',
]},
entry_points={
'console_scripts': [
'khal = khal.cli:main_khal',
'ikhal = khal.cli:main_ikhal'
]
},
install_requires=requirements,
extras_require=extra_requirements,
setup_requires=['setuptools_scm'], # not needed when using packages from PyPI
use_scm_version={'write_to': 'khal/version.py'},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Environment :: Console :: Curses",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities",
"Topic :: Communications",
],
)