A collection of classes and commands for automated command line scripting using Python.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

53 lines
1.5 KiB

# See https://packaging.python.org/en/latest/distributing.html
# and https://docs.python.org/2/distutils/setupscript.html
# and https://pypi.python.org/pypi?%3Aaction=list_classifiers
from setuptools import setup, find_packages
def read_file(path):
with open(path, "r") as f:
contents = f.read()
f.close()
return contents
setup(
name='python-scripttease',
version=read_file("VERSION.txt"),
description=read_file("DESCRIPTION.txt"),
long_description=read_file("README.markdown"),
long_description_content_type="text/markdown",
author='Shawn Davis',
author_email='shawn@develmaycare.com',
url='https://github.com/develmaycare/python-scripttease',
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=[
"jinja2",
"pygments",
"superpython",
],
dependency_links=[
"https://github.com/develmaycare/superpython",
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
zip_safe=False,
tests_require=[
"coverage",
],
test_suite='runtests.runtests',
entry_points={
'console_scripts': [
'tease = script_tease.cli:main_command',
],
},
)