-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 998 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
28
29
30
31
from setuptools import setup, find_packages
version = '0.0.1'
setup(name='no-dice-api',
version=version,
description="API for accessing No-Dice.Net.",
long_description=open("README.md", "r").read(),
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"License :: OSI Approved :: BSD License",
],
keywords='',
author='T. Scott Barnes',
author_email='tsbarnes@no-dice.net',
url='http://github.com/no-dice/api',
license='BSD',
packages=find_packages(),
install_requires=[
"requests",
"requests-oauth2",
],
include_package_data=True,
zip_safe=False,
)