-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 763 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(
name = "domainr",
version = "1.0.0",
description = "Dead-Simple way to interact with the Domainr JSON API",
author = "Connor Montgomery",
author_email = "c@cnnr.me",
url = "http://cnnr.me",
keywords = ["domainr", "domains", "domain", "url"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Text Processing :: Linguistic",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search"
],
)