Skip to content

Commit 13d76ff

Browse files
author
David Muller
committed
Add foundational files for pip packaging
1 parent 82b4c97 commit 13d76ff

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
*.pyc
2+
*.pyo
3+
dist/
4+
*egg-info

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.0.1
2+
3+
- Initial release

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include LICENSE
2+
include CHANGELOG.md

setup.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
from setuptools import setup
2+
3+
github_repo_url = 'https://github.com/Guidebook/guidebook-api-python'
4+
5+
setup(
6+
name='guidebook-api-python',
7+
version='0.0.1',
8+
author='Guidebook',
9+
author_email='[email protected]',
10+
description='Python client for the Guidebook Open API.',
11+
long_description='See {} for installation and usage instructions.'.format(github_repo_url),
12+
url=github_repo_url,
13+
license='MIT',
14+
packages=['guidebook'],
15+
install_requires=['requests>=2.0.0'],
16+
17+
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
18+
classifiers=[
19+
'License :: OSI Approved :: MIT License',
20+
'Programming Language :: Python :: 2.7',
21+
],
22+
)

0 commit comments

Comments
 (0)