-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·39 lines (33 loc) · 1.18 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
from setuptools import find_packages, setup
def readme_md():
"""Return contents of README.md"""
return open("README.md").read()
def changelog_md():
"""Return contents of Changelog.md"""
return open("Changelog.md").read()
setup(
name='radicale-imap',
version='0.2.0',
author='Nikos Roussos',
author_email='[email protected]',
url='https://gitlab.com/comzeradd/radicale-imap/',
description='Radicale IMAP authentication plugin',
long_description_content_type="text/markdown",
long_description=readme_md() + "\n\n" + changelog_md(),
include_package_data=True,
zip_safe=False,
packages=find_packages(),
install_requires=['radicale'],
license='LICENSE',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)