-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.28 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="ccguard",
version="0.7.0",
entry_points={
"console_scripts": [
"ccguard=ccguard.ccguard:main",
"ccguard_log=ccguard.ccguard_log:main",
"ccguard_show=ccguard.ccguard_show:main",
"ccguard_diff=ccguard.ccguard_diff:main",
"ccguard_convert=ccguard.ccguard_convert:main",
"ccguard_sync=ccguard.ccguard_sync:main",
"ccguard_server=ccguard.ccguard_server:main",
]
},
author="Ivo Bellin Salarin",
author_email="[email protected]",
description="Prevent code coverage regressions",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nilleb/ccguard",
packages=["ccguard"],
package_data={
"": ["scripts/migrate_sqlite_database.py", "scripts/cleanup_database.py", "templates/index.html"],
},
install_requires=["pycobertura", "gitpython", "flask", "requests", "lxml", "colour"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
],
)