-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 767 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (19 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from os import path
from setuptools import find_packages, setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="pyhist",
version="0.0.5",
author="Javier Guzman",
author_email="jguzmanfd@gmail.com",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
license="Apache Software License",
entry_points={"console_scripts": ["pyhist = pyhist.cli:main"]},
install_requires=["click==7.1.2", "GitPython==3.1.1",],
extras_require={"tests": ["black==19.10b0", "pre-commit==2.5.1", "pytest==5.4.2",]},
url="https://github.com/jgoodman8/pyhist",
)