-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (27 loc) · 808 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
# -*- coding: utf-8 -*-
from setuptools import setup
from distutils.core import Extension
setup(
name='dping',
version='0.1',
description='A simple ping program write in Python.',
author='Damnever',
author_email='dxc.wolf@gmail.com',
license='The BSD 3-Clause License',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='ping',
packages=['dping'],
ext_modules=[Extension('dping._sigpending', sources=['dping/_sigpending.c'])],
entry_points={
'console_scripts': [
'dping=dping:ping',
]
},
)