-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (34 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
import os.path
from setuptools import find_packages, setup
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, "README.md")) as fid:
README = fid.read()
if __name__ == "__main__":
setup(
name="blossalg",
version="1.2.0",
description=(
"Construct a maximum matching on a graph with the blossom"
" algorithm"
),
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/nenb/blossalg",
author="Nick Byrne",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.8",
],
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=["future"],
extras_requires={
"tests": ["coverage", "pytest"],
"dev": ["coverage", "pytest", "pre-commit"],
},
entry_points={"console_scripts": ["blossalg=blossom.__main__:main"]},
)