-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 775 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 775 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
30
31
32
33
from setuptools import setup,find_packages
PACKAGE = "pytaillog"
NAME = "pytaillog"
DESCRIPTION = "dispaly log in a browser"
AUTHOR = "lovedboy"
AUTHOR_EMAIL = "lovedboy.tk@qq.com"
URL = "https://github.com/lovedboy/PyTailLog"
VERSION = '0.3'
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license="BSD",
url=URL,
install_requires=[
"tornado",
],
scripts=['bin/pytaillog'],
include_package_data = True,
packages = find_packages(),
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
zip_safe=False,
)