-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (45 loc) · 1.66 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import sys
from setuptools import setup, find_packages
# we only support Python 3 version >= 3.2
if len(sys.argv) >= 2 and sys.argv[1] == "install" and sys.version_info < (3, 2):
raise SystemExit("Python 3.2 or higher is required")
setup(
name="igmp",
description="IGMPv2 router-side protocol implementation for Python",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
keywords="IGMP IGMPv2 Router IPv4 Multicast Interest",
version="1.0.4",
url="http://github.com/pedrofran12/igmp",
author="Pedro Oliveira",
author_email="[email protected]",
license="MIT",
install_requires=[
'netifaces',
'ipaddress',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms="any",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Topic :: System :: Networking",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
python_requires=">=3.2",
)