-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
27 lines (26 loc) · 910 Bytes
/
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
import os, re
from setuptools import setup, find_packages
setup(
name = "tornado-stripe",
version = "1.0.3",
author = "Didip Kerabat",
author_email = "[email protected]",
description = ("Tornado client library for accessing Stripe API"),
license = "Apache Software License",
keywords = "tornado stripe api",
url = "https://github.com/didip/tornado-stripe",
packages=find_packages(exclude=['tests']),
package_data = {
# If any package contains *.txt or *.md files, include them
'': ['*.txt', '*.md'],
},
include_package_data=True,
install_requires = ["tornado>=2.4"],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
],
)