-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
43 lines (35 loc) · 1.33 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
import os
import sys
from setuptools import setup, find_packages
version = '3.0.4'
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 = '[email protected]',
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(),
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']
)