Skip to content

Commit a64eead

Browse files
committed
add setup instructions
1 parent 58f15e4 commit a64eead

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
4+
import setuptools
5+
6+
with open("README.md", "r") as fh:
7+
long_description = fh.read()
8+
9+
setuptools.setup(
10+
name="pybuildkite",
11+
version="1.2.3",
12+
url="https://github.com/pyasi/pybuildkite",
13+
download_url="https://github.com/pyasi/pybuildkite/archive/master.zip",
14+
author="Peter Yasi",
15+
packages=["pybuildkite"],
16+
description="Python wrapper for the Buildkite API",
17+
long_description=long_description,
18+
long_description_content_type="text/markdown",
19+
keywords=["Buildkite", "Continuous Integration", "API", "CI", "wrapper", "python"],
20+
install_requires=["requests"],
21+
)

0 commit comments

Comments
 (0)