-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (50 loc) · 1.41 KB
/
setup.py
File metadata and controls
58 lines (50 loc) · 1.41 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
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, find_packages
version = "4.0.3"
with open("README.md", "rt") as f:
long_description = f.read()
with open("requirements.txt", "rt") as f:
requirements = tuple(f.read().split())
setup(
name="whoisit",
version=version,
url="https://github.com/meeb/whoisit",
author="https://github.com/meeb",
author_email="meeb@meeb.org",
description="A Python client to RDAP WHOIS-like services for internet resources.",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
include_package_data=True,
install_requires=requirements,
packages=find_packages(exclude=("tests",)),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords=[
"whoisit",
"whois",
"rdap",
"ip",
"network",
"cidr",
"prefix",
"domain",
"asn",
"autnum",
"tld",
"entity",
"handle",
"arin",
"afrinic",
"apnic",
"ripe",
"lacnic",
],
)