-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
32 lines (25 loc) · 831 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
32
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
def requirements():
with open('./requirements.txt', 'r') as f:
return f.read().splitlines()
def description():
basedir = dirname(abspath(__file__))
with open(join(basedir, "README.md"), 'r') as f:
return f.read()
setup(
name='drone-python',
version='1.0.0',
description="Python client for the Drone CI public API",
long_description=description(),
long_description_content_type="text/markdown",
url="https://github.com/tinvaan/drone-python",
author="Harish Navnit",
author_email="harishnavnit@gmail.com",
packages=find_packages(),
include_package_data=True,
install_requires=requirements(),
python_requires=">3.6"
)