-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 831 Bytes
/
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
from setuptools import find_packages, setup, Command
with open("mcpypanel/__version__.py", "r") as f:
exec(f.read())
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='mcpypanel',
version=__version__,
description="A panel for minecraft servers and proxy, doc at https://github.com/netgoatfr/mcpypanel",
license='CC BY-SA',
author="netgoatfr",
author_email="netgoatfr@gmail.com",
packages=find_packages(include=['mcpypanel', 'mcpypanel*']),
long_description=open('README.md').read(),
url="https://github.com/netgoatfr/mcpypanel", # Project Url
entry_points={
'console_scripts': [
'mcpypanel = mcpypanel:main',
]
}, # Start Script
install_requires=required, # Requirements
platforms="linux",
)
print(BANNER)