-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
53 lines (46 loc) · 1.51 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from linux_profile_plugin import __version__
from setuptools import setup
from setuptools.command.install import install
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
class CustomInstallCommand(install):
def run(self):
install.run(self)
setup(
name="linuxp-plugin",
version=__version__,
author="Fernando Celmer",
author_email="[email protected]",
description="🐧 Plugin Linux Profile",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/linux-profile/linux-profile-plugin",
cmdclass={
'install': CustomInstallCommand,
},
install_requires=[
'linuxp>=1.0.18'
],
classifiers=[
'Development Status :: 4 - Beta',
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
'Intended Audience :: Developers',
'Natural Language :: English',
"Programming Language :: Python :: 3.6",
"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",
],
include_package_data=True,
python_requires=">=3.6",
zip_safe=True,
fullname='linuxp-plugin',
entry_points={
'console_scripts': ['linuxp_plugin=linux_profile_plugin.main:main'],
},
)