-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
48 lines (47 loc) · 2.72 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#setup-args
setup(name='netlicensing-client',
version='0.0.6',
description='Python wrapper for Labs64 NetLicensing RESTful API',
long_description=open('README.md').read().strip(),
long_description_content_type="text/markdown",
author='Labs64 NetLicensing',
author_email='[email protected]',
url='https://netlicensing.io',
project_urls={
'Getting Started': 'https://netlicensing.io/getting-started/',
'Documentation': 'https://netlicensing.io/wiki/restful-api',
'Source': 'https://github.com/Labs64/NetLicensingClient-python',
'Changelog': 'https://github.com/Labs64/NetLicensingClient-python/releases',
'Tracker': 'https://github.com/Labs64/NetLicensingClient-python/issues',
'CI': 'https://github.com/Labs64/NetLicensingClient-python/actions',
},
py_modules=['netlicensing'],
include_package_data=True,
install_requires=['requests'],
packages=find_packages(),
license='Apache-2.0',
zip_safe=False,
keywords='labs64 netlicensing software licensing Licensing-as-a-Service LaaS license license-management software-license client restful restful-api python wrapper api client licensing library',
classifiers=[
# https://pypi.org/classifiers/
'Development Status :: 1 - Planning',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Software Distribution',
'Topic :: Utilities'
],
python_requires='>=3.6',
platforms=['any'],
)