-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 882 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
31
32
from setuptools import setup, find_packages
VERSION = '1.2.2'
DESCRIPTION = "Scan connected IP's using GreyNoise API"
with open("README.md", 'r') as fh:
LONG_DESCRIPTION = fh.read()
# Setting up
setup(
name="ip-checker",
version=VERSION,
author="michgl",
author_email="<[email protected]>",
url="https://github.com/mickgl/ip-checker",
license="MIT License",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
entry_points="""
[console_scripts]
ipchecker = ipchecker.ipchecker:main
""",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: POSIX",
]
)