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
|
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from TSGroupAssigner import __version__
# long readme
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='TSGroupAssigner',
version=__version__,
url='https://github.com/mightyBroccoli/TSGroupAssigner',
author='nico wellpott',
author_email='nico@magicbroccoli.de',
classifiers=[
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Communications',
'Topic :: Internet'
],
license='GPLv3',
description='date based TeamSpeak Group Assigner',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='automation TeamSpeak teamspeak ts3 ts3server ts',
install_requires=[
'ts3>=1.0.11,<2'
],
packages=find_packages(exclude=('tests',)),
python_requires='>=3.6',
project_urls={
'Source': 'https://github.com/mightyBroccoli/TSGroupAssigner',
'Issue-Tracker': 'https://github.com/mightyBroccoli/TSGroupAssigner/issues'
}
)
|