forked from develer-staff/python-turboactivate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·26 lines (24 loc) · 1.07 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
#!/usr/bin/env python
from distutils.core import setup
setup(name="turboactivate",
version="4.0.2",
description="Python integration for the LimeLM TurboActivate library. This lets you add hardware-locked licensing (a.k.a. node-locked licensing) to your Python app.",
url="https://wyday.com/limelm/help/using-turboactivate-with-python/",
download_url="https://github.com/wyattoday/python-turboactivate",
author="Develer S.r.L",
author_email="info@develer.com",
maintainer="wyDay, LLC",
maintainer_email="support@wyday.com",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
packages=["turboactivate"],
long_description=open("README.md").read(),
long_description_content_type="text/markdown"
)