-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (27 loc) · 940 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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='pymeistertask',
version='0.1.2',
description='MeisterTask client library',
long_description='MeisterTask client library',
url='https://github.com/tomkins/pymeistertask',
maintainer='Alex Tomkins',
maintainer_email='[email protected]',
platforms=['any'],
packages=find_packages(exclude=['tests']),
include_package_data=True,
python_requires='>=3.5',
install_requires=['requests>=2.0.0'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
license='BSD',
)