forked from Qencode-Corp/qencode-api-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 961 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 961 Bytes
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
"""A setuptools based setup module.
"""
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open('README.md') as f:
long_description = f.read()
setup(
name='qencode',
version='0.9.29',
description="Client library for main features and functionality of Qencode for Python v2.x.",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/qencode-dev/qencode-api-python-client',
# url=here,
author='Qencode Developer',
author_email='team@qencode.com',
license='proprietary',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: Other/Proprietary License',
'Programming Language :: Python :: 2.7'
],
keywords='qencode, qencode.com, cloud.qencode.com',
packages=['qencode']
)