forked from jjorissen52/python-qgenda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (49 loc) · 1.33 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
#!/usr/bin/env python
import os
import sys
from qgenda import __version__
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
long_description = readme.read()
setup(
name='python-qgenda',
version=__version__,
description='Python client for QGenda REST API',
long_description=long_description,
url='https://github.com/jjorissen52/python-qgenda',
author='JP Jorissen',
author_email='[email protected]',
maintainer='JP Jorissen',
maintainer_email='[email protected]',
keywords=['QGenda', 'python api', 'python client'],
license='Apache',
packages=[
'qgenda',
'qgenda.api',
'qgenda.cache',
'qgenda.pipeline',
'qgenda.tests'
],
install_requires=[
'requests',
],
extras_require={
'redis': [
"redis",
],
'memcache': [
"python-memcached"
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)