-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·48 lines (44 loc) · 1.37 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
import distribute_setup
distribute_setup.use_setuptools()
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
from janrain.capture import get_version
setup(
name = "janrain-python-api",
version = get_version(),
description = "Python interface to the Janrain Capture API.",
long_description = read("README.rst"),
author = "Micah Carrick",
author_email = "[email protected]",
url = "http://developers.janrain.com/",
packages = find_packages(),
namespace_packages = ["janrain"],
scripts=[os.path.join("bin", script) for script in os.listdir("./bin")],
package_data={
'janrain.capture.test': ["janrain-config"]
},
#license = "",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"License :: OSI Approved :: MIT License"
],
test_suite = "janrain.capture.test",
use_2to3 = True,
install_requires = [
'requests',
'pyyaml',
],
setup_requires=[
'nose',
'mock',
],
)