Python client for GoLab
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

28 lines
759 B

#!/usr/bin/env python
from setuptools import setup, find_packages
from golab import __version__
requirements = []
with open("./requirements.txt") as fp:
requirements = [l.strip() for l in fp]
setup(
name="golab",
version=__version__,
description="Python client for GoLab",
author="Brett Langdon",
author_email="brett@blangdon.com",
url="https://github.com/brettlangdon/golab-python",
packages=find_packages(),
license="MIT",
install_requires=requirements,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
]
)