-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
80 lines (76 loc) · 3.31 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# File: setup.py
#
# Project website: https://www.lucit.tech/lucit-licensing-python.html
# Github: https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python
# Documentation: https://lucit-licensing-python.docs.lucit.tech
# PyPI: https://pypi.org/project/lucit-licensing-python
# LUCIT Online Shop: https://shop.lucit.services/software
#
# License: LSOSL - LUCIT Synergetic Open Source License
# https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python/blob/master/LICENSE
#
# Author: LUCIT Systems and Development
#
# Copyright (c) 2023-2023, LUCIT Systems and Development (https://www.lucit.tech)
# All rights reserved.
from setuptools import setup
from Cython.Build import cythonize
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
ext_modules=cythonize(
['lucit_licensing_python/__init__.py',
'lucit_licensing_python/licensing_cli.py',
'lucit_licensing_python/licensing_exceptions.py',
'lucit_licensing_python/licensing_manager.py'],
annotate=False),
name='lucit-licensing-python',
version="1.8.2",
author="LUCIT Systems and Development",
author_email='info@lucit.tech',
url="https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python",
description="LUCIT Licensing Client Module",
long_description=long_description,
long_description_content_type="text/markdown",
license='LSOSL - LUCIT Synergetic Open Source License',
install_requires=['Cython', 'requests', 'simplejson'],
keywords='',
project_urls={
'Documentation': 'https://lucit-licensing-python.docs.lucit.tech',
'Wiki': 'https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python/wiki',
'Author': 'https://www.lucit.tech',
'Changes': 'https://lucit-licensing-python.docs.lucit.tech/changelog.html',
'License': 'https://lucit-licensing-python.docs.lucit.tech/license.html',
'Issue Tracker': 'https://github.com/LUCIT-Systems-and-Development/lucit-licensing-python/issues',
'Telegram': 'https://t.me/unicorndevs',
'Chat': 'https://app.gitter.im/#/room/#lucit-licensing-python:gitter.im',
'Get Support': 'https://www.lucit.tech/get-support.html',
'LUCIT Online Shop': 'https://shop.lucit.services/software',
},
python_requires='>=3.7.0',
package_data={'': ['lucit_licensing_python/*.so',
'lucit_licensing_python/*.pyd',
'lucit_licensing_python/*.dll',
'lucit_licensing_python/*.py']},
entry_points={
"console_scripts": [
"lucitlicmgr = lucit_licensing_python.cli:main",
]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: Other/Proprietary License",
'Intended Audience :: Developers',
"Operating System :: OS Independent",
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Cython',
],
)