-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
45 lines (40 loc) · 1.18 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
import io
import os
from setuptools import find_packages, setup
VERSION = '2.0.1'
REPO = 'https://github.com/apache-superset/cherrytree'
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
with io.open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='cherrytree',
description=(
'A build tool to pick cherry, bake release branches, and power '
'label-driven development'),
long_description=long_description,
long_description_content_type='text/markdown',
version=VERSION,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
scripts=['cherrytree/bin/cherrytree'],
install_requires=[
'click',
'pygithub',
'python-dateutil',
'GitPython',
'delegator.py',
'pyyaml',
'yaspin',
],
author='Maxime Beauchemin',
author_email='maximebeauchemin@gmail.com',
url=REPO,
download_url= REPO + '/tarball/' + VERSION,
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)