File tree 4 files changed +27
-0
lines changed
4 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ include *.md *.py
File renamed without changes.
Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change
1
+ import doctest
2
+ doctest .testfile ('README.md' , verbose = False )
You can’t perform that action at this time.
0 commit comments