forked from imlonghao/portstat
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 723 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 723 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
from setuptools import setup, find_packages
from os import path
from codecs import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='portstat',
version='0.1.0',
keywords=('port', 'monitor', 'traffic'),
url='https://github.com/imlonghao/portstat',
license='Apache License 2.0',
author='imlonghao',
author_email='shield@fastmail.com',
description='A simple port traffic monitor',
long_description=long_description,
packages=find_packages(),
platforms='any',
entry_points={
'console_scripts': [
'portstat=portstat.portstat:main'
]
}
)