forked from python/core-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (29 loc) · 960 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
33
34
35
from setuptools import setup
with open('cherry_picker/readme.rst') as f:
long_description = f.read()
with open('cherry_picker/requirements.txt') as f:
requirements = [l.strip() for l in f.read().split('\n')]
setup(
name='cherry_picker',
description='backport cpython changes from master to maintenance branches',
long_description=long_description,
license='Apache',
url='https://github.com/python/core-workflow',
author='Mariatta Wijaya',
author_email='[email protected]',
maintainer='Python Core Developers',
maintainer_email='[email protected]',
packages=[
'cherry_picker',
],
entry_points={
'console_scripts': [
'cherry_picker = cherry_picker.cherry_picker:cherry_pick_cli',
],
},
classifiers=[
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
],
install_requires=requirements,
)