Skip to content

Commit

Permalink
Changes to upload to PyPi.
Browse files Browse the repository at this point in the history
Add slightly more complete setup.py, a MANIFEST.in to add the examples
directory, and a new version number to celebrate all of the work that
has been done in the last 11 months.
  • Loading branch information
martey committed Apr 25, 2012
1 parent f30204a commit 15d284f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ var
sdist
develop-eggs
.installed.cfg
MANIFEST

# Installer logs
pip-log.txt
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include readme.md
recursive-include examples *.css *.html *.ico *.py *.sql *.txt *.yaml
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
#!/usr/bin/env python
from distutils.core import setup
import os

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


setup(
name='facebook-sdk',
version='0.2.0',
version='0.3.0',
description='This client library is designed to support the Facebook '
'Graph API and the official Facebook JavaScript SDK, which '
'is the canonical way to implement Facebook authentication.',
author='Facebook',
url='http://github.com/pythonforfacebook/facebook-sdk',
license='Apache',
py_modules=[
'facebook',
],
long_description=read("readme.md"),
classifiers=[
'License :: OSI Approved :: Apache Software License',
],
)

0 comments on commit 15d284f

Please sign in to comment.