-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (30 loc) · 1.08 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
"""A setuptools based setup module.
"""
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open('LONG_DESCRIPTION.md') as f:
long_description = f.read()
setup(
name='qencode',
version='1.0.4',
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='[email protected]',
license='proprietary',
classifiers=[
'Development Status :: 5 - Production/Stable',
'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', 'qencode.drm'],
package_data={'qencode.drm': ['keys/buydrm_qencode_public_cert.pem']},
include_package_data=True,
)