-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
38 lines (34 loc) · 1.09 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
import pathlib
from setuptools import setup
from rptree import __version__
HERE = pathlib.Path().cwd()
DESCRIPTION = HERE.joinpath("README.md").read_text()
VERSION = __version__
setup(
name="rptree",
version=VERSION,
description="Generate directory tree diagrams for Real Python articles",
long_description=DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/realpython/rptree",
author="Real Python",
maintainer="Leodanis Pozo Ramos",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
],
packages=["rptree"],
include_package_data=True,
entry_points={
"console_scripts": [
"rptree=rptree.__main__:main",
]
},
)