Skip to content

Commit dc63fe7

Browse files
author
Reed Jessen
committed
Initial Commit
1 parent f6caf9d commit dc63fe7

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from distutils.core import setup
2+
setup(
3+
name = 'IPStreet',
4+
packages = ['IPStreet'], # this must be the same as the name above
5+
version = '0.1',
6+
description = 'A Pythin SDK for interacting with the IP Street API',
7+
author = 'Reed Jessen',
8+
author_email = 'Reed@IPStreet.com',
9+
url = 'https://github.com/IPStreet/PythonSDK', # use the URL to the github repo
10+
download_url = 'https://github.com/peterldowns/mypackage/tarball/0.1', # I'll explain this in a second
11+
keywords = ['patent', 'SDK', 'IP Street', 'API', 'wrapper'], # arbitrary keywords
12+
classifiers = [],
13+
)

0 commit comments

Comments
 (0)