-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.24 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
from setuptools import setup
if __name__ == "__main__":
with open("README.md", encoding="utf-8") as file:
long_description = file.read()
setup(
packages=['pystache_cli'],
keywords=["cli", "pystache", "template"],
install_requires=["pystache"],
name='pystache-cli',
description="Extended command line client for pystache",
long_description=long_description,
long_description_content_type="text/markdown", # text/markdown or text/x-rst or text/plain
version="0.3.4",
author="Christian Winger",
author_email="[email protected]",
url="https://github.com/wingechr/pystache-cli",
download_url="https://github.com/wingechr/pystache-cli",
platforms=["any"],
license="Public Domain",
project_urls={"Bug Tracker": "https://github.com/wingechr/pystache-cli",},
classifiers=[
"Programming Language :: Python :: 3",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": ["pystache-cli = pystache_cli.pystache_cli:main"]
},
package_data={"tests": ["data/**"]},
)