-
Notifications
You must be signed in to change notification settings - Fork 193
/
Copy pathsetup.py
36 lines (32 loc) · 1.08 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
import os
import setuptools
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setuptools.setup(
name="python-whois",
version="0.9.5",
description="Whois querying and parsing of domain registration information.",
long_description=read("README.md"),
long_description_content_type="text/markdown",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3",
],
keywords="whois, python",
author="Richard Penman",
author_email="[email protected]",
url="https://github.com/richardpenman/whois",
license="MIT",
packages=["whois"],
package_dir={"whois": "whois"},
install_requires=["python-dateutil"],
test_suite="nose.collector",
tests_require=["nose", "simplejson"],
include_package_data=True,
zip_safe=False,
)