forked from samhardyhey/clean-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 763 Bytes
/
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
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
REQUIREMENTS = [
"black==22.3.0",
"isort==4.3.21",
"jupyter==1.0.0",
"autoflake==1.4",
"jupyter_contrib_nbextensions==0.5.1",
"pytest==7.0.1",
]
setup(
name="clean_py",
version="0.5",
url="https://github.com/samhardyhey/clean-py",
author="Sam Hardy",
author_email="[email protected]",
packages=find_packages(),
entry_points={"console_scripts": ["clean_py=clean_py.cli:main"]},
python_requires=">=3.6",
install_requires=REQUIREMENTS,
long_description=long_description,
long_description_content_type="text/markdown",
)