-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 759 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 759 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
import setuptools
def read_file(name):
with open(name) as fp:
return fp.read()
setuptools.setup(
name='ip-range',
version='0.0.6',
long_description=read_file('README.md'),
packages=['iprange'],
tests_require=['pytest'],
setup_requires=['pytest-runner'],
author="Reut Sharabani",
author_email="[email protected]",
description="library to handle ip ranges (using `ipaddress`)",
url="https://github.com/reutsharabani/ip-range",
classifiers=(
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
),
)