-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 845 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
from setuptools import setup
with open('README.md', 'r') as fp:
long_desc = fp.read()
setup(
name='mass-ping',
version='2',
author='Tom YU Choe',
author_email='[email protected]',
description='A threaded ICMP ping using /bin/ping, ping.exe.',
long_description=long_desc,
url='https://github.com/YUChoe/mass_ping',
long_description_content_type="text/markdown",
py_modules=['mass_ping'],
package_dir={'': 'src'},
license='MIT',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
)