forked from mitchchn/randomapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 1.07 KB
/
setup.py
File metadata and controls
29 lines (27 loc) · 1.07 KB
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'randomapi',
version = '0.3.2',
description = 'RANDOM.org JSON-RPC API implementation',
long_description = long_description,
long_description_content_type = 'text/markdown',
author = 'Mitchell Cohen <mitch.cohen@me.com>',
author_email = 'mitch.cohen@me.com',
maintainer = 'Thomas Chick (twitter.com/Tantusar)',
py_modules = ['randomapi'],
url = 'https://github.com/Tantusar/randomapi',
license = 'MIT License',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
python_requires = '>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, >=3.6',
download_url = 'https://github.com/Tantusar/randomapi/archive/v0.3.2.tar.gz'
)