-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 833 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
28
29
30
from setuptools import setup
import os
#get long description from readme
cur_dir = os.path.dirname(__file__)
try:
long_description = open(os.path.join(cur_dir, 'README.md')).read()
except:
long_description = ""
setup(
name = 'ts3LogAnalyzer',
version = '2.1.1',
description = 'A cli utility for analyzing teamspeak 3 server logs.',
ong_description = long_description,
url = 'https://github.com/ToFran/TS3LogAnalyzer/',
author = 'Francisco Marques',
author_email = '[email protected]',
license = 'GPL V3',
packages = ['ts3LogAnalyzer'],
package_data = {'ts3LogAnalyzer': ['schema.sql']},
zip_safe = False,
install_requires = ['docopt>=0.6.2'],
keywords='teamspeak ts3 ts3server ts',
entry_points =
"""
[console_scripts]
ts3LogAnalyzer = ts3LogAnalyzer.ts3LogAnalyzer:main
"""
)