forked from TheRenegadeCoder/sample-programs-readmes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 908 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 908 Bytes
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="ronbun",
version="0.6.0",
author="The Renegade Coder",
author_email="jeremy.grifski@therenegadecoder.com",
description="The Sample Programs README Automation Tool",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TheRenegadeCoder/sample-programs-readmes",
packages=setuptools.find_packages(),
install_requires=[
"SnakeMD>=0",
"subete>=0.11"
],
entry_points={
"console_scripts": [
'ronbun = ronbun.readme:main'
],
},
classifiers=(
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License"
),
)