-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 777 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 777 Bytes
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
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
setup(
name="github-changelog",
url="https://github.com/cfpb/github-changelog",
author="CFPB",
license="CC0",
version="1.4.0",
description="GitHub Pull Request changelog generator",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
packages=find_packages(),
install_requires=[
"requests>=2.13",
],
extras_require={
"testing": [
"mock>=2.0.0",
"coverage>=3.7.0",
"flake8>=2.2.0",
],
},
entry_points={
"console_scripts": [
"changelog = changelog:main",
]
},
)