-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 970 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
from setuptools import setup, find_packages
__VERSION__ = '0.1'
setup(
name='taiga_client',
version=__VERSION__,
description="A Python wrapper for Taiga's API",
long_description='Taiga Python Client',
url='https://github.com/reckonsys/taiga-python-client',
author='dhilipsiva',
author_email='dhilipsiva@pm.me',
maintainer='Reckonsys',
maintainer_email='info@reckonsys.com',
license='MIT',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: SQL',
'Topic :: Software Development :: Libraries :: Python Modules',
'Typing :: Typed',
],
keywords='taiga python client reckonsys jira issues tickets',
packages=find_packages(),
install_requires=['requests'],
)