-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (42 loc) · 1.2 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
"""
Build configuration
"""
import setuptools
VERSION = (0, 6, 0)
with open("README.md", "r") as handler:
LONG_DESC = handler.read()
setuptools.setup(
name="orgassist",
version=".".join(str(f) for f in VERSION),
description=("Assistant who handles your appointments, tasks "
"and note-taking when you're away from your computer"),
long_description=LONG_DESC,
author="Tomasz bla Fortuna",
author_email="[email protected]",
url="https://github.com/blaa/orgassist",
keywords="org-mode emacs bot xmpp planner",
scripts=['assist.py'],
include_package_data=True,
packages=setuptools.find_packages(),
install_requires=[
'PyYAML==5.3',
'sleekxmpp==1.3.1',
'schedule>=0.6.0',
'Jinja2>=2.11.1',
'pytz>=2019.3',
],
extras_require={
'exchange_plugin': [
"pyexchange==0.6"
],
},
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Topic :: Communications :: Chat",
"Topic :: Internet :: XMPP",
"Topic :: Office/Business :: Scheduling",
"Topic :: Text Editors :: Emacs",
],
)