mirror of
https://github.com/Thor77/TeamspeakStats.git
synced 2025-04-03 04:05:13 -04:00
add setup.py
This commit is contained in:
parent
6d40ebc563
commit
432e89bfbe
1 changed files with 18 additions and 0 deletions
18
setup.py
Normal file
18
setup.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='tsstats',
|
||||
version='0.1.0',
|
||||
author='Thor77',
|
||||
author_email='thor77@thor77.org',
|
||||
description='A simple Teamspeak stats-generator',
|
||||
keywords='ts3 teamspeak teamspeak3 tsstats teamspeakstats',
|
||||
url='https://github.com/Thor77/TeamspeakStats',
|
||||
packages=['tsstats'],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'tsstats = tsstats.__main__:cli'
|
||||
]
|
||||
},
|
||||
install_requires=open('requirements.txt').read()
|
||||
)
|
Loading…
Add table
Reference in a new issue