-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·45 lines (43 loc) · 1.39 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·45 lines (43 loc) · 1.39 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os.path
# Read README for long description
BASE = os.path.dirname(__file__)
README = os.path.join(BASE, 'README.rst')
with open(README) as f:
long_description = f.read()
setup(name='ipgrep',
version='0.1.0',
description="IPv4 netmask aware grep for firewall scripts etc.",
long_description=long_description,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: Public Domain',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet',
'Topic :: System :: Networking',
'Topic :: Utilities',
],
keywords='',
author='Juho Juopperi',
# author_email='XXX',
url='https://github.com/jkjuopperi/ipgrep',
license='Public Domain',
packages=find_packages(exclude=['tests']),
test_suite="tests",
zip_safe=False,
extras_require={
'test': ['pytest'],
},
entry_points="""
[console_scripts]
ipgrep=ipgrep.ipgrep:main
"""
)