Skip to content

Commit 7060f70

Browse files
committed
setup.py sugar
1 parent e8f0849 commit 7060f70

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include *.md *.py

README renamed to README.md

File renamed without changes.

setup.py

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from distutils.core import setup
2+
3+
long_description = open('README.md').read()
4+
5+
setup(name="python-crunchbase",
6+
version="0.0.2",
7+
py_modules=["crunchbase"],
8+
description="Libraries for interacting with the Crunchbase API",
9+
author="amehta <http://github.com/amehta>",
10+
author_email = "none@example.com",
11+
license="WTFPL",
12+
url="http://github.com/amehta/crunchbase",
13+
long_description=long_description,
14+
platforms=["any"],
15+
classifiers=["Development Status :: 3 - Alpha",
16+
"Intended Audience :: Developers",
17+
"Natural Language :: English",
18+
"Operating System :: OS Independent",
19+
"Programming Language :: Python",
20+
"Topic :: Software Development :: Libraries :: Python Modules",
21+
],
22+
install_requires=["simplejson >= 1.8"]
23+
)
24+

test_crunchbase.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import doctest
2+
doctest.testfile('README.md', verbose=False)

0 commit comments

Comments
 (0)