- Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
17 lines (16 loc) · 518 Bytes
/
Copy pathsetup.py
File metadata and controls
17 lines (16 loc) · 518 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
fromsetuptoolsimportsetup
setup(
name='Kickbase_API',
version='0.0.8',
packages=['kickbase_api', 'kickbase_api.models', 'kickbase_api.models.response'],
url='https://github.com/kevinskyba/kickbase-api-python',
license='MIT',
author='kevinskyba',
author_email='kevinskyba@live.de',
description='Python API library for kickbase',
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
install_requires=(
'requests',
)
)