-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (37 loc) · 1.27 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
"""Python diff"""
import setuptools
import pyff
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
setuptools.setup(
name="pythondiff",
version=pyff.__version__,
description="Python Diff",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/petr-muller/pyff",
author="Petr Muller",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
],
keywords="python static_analysis diff",
packages=["pyff"],
setup_requires=["pytest-runner", "pytest-bdd", "pytest-pylint", "pytest-mypy", "pytest-cov"],
tests_require=["pytest", "pylint", "mypy"],
install_requires=["colorama", "astroid", "gitpython"],
entry_points={
"console_scripts": [
"pyff=pyff.run:pyffmod",
"pyff-package=pyff.run:pyffpkg",
"pyff-dir=pyff.run:pyffdir",
"pyff-git=pyff.run:pyffgit",
]
},
)