-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 755 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 755 Bytes
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
from setuptools import setup, find_packages
long_description = open('README.rst').read()
packages = find_packages(exclude=['tests", "tests.*'])
setup(
name='venturocket',
version='1.0.0',
packages=packages,
url='https://github.com/Venturocket/venturocket-api-python',
license='LICENSE',
author='Joe Linn',
author_email='',
description="The official python client library for Venturocket's API",
long_description=long_description,
install_requires=['requests'],
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP'
]
)