-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 707 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 707 Bytes
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
from setuptools import setup, find_packages
VERSION = "1.0.3"
with open("README.md", "r") as f:
readme = f.read()
setup(
name="pyxui",
version=VERSION,
author="Staliox",
description="An application with python that allows you to modify your xui panel",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/staliox/pyxui",
keywords=[
"pyxui",
"xui",
"xui python",
"xui panel"
],
packages=find_packages(),
install_requires=["requests"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
license="MIT"
)