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.
60 lines
1.9 KiB
60 lines
1.9 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://develmaycare.com/products/python/scripttease/',
|
|
download_url='https://github.com/develmaycare/python-scripttease',
|
|
project_urls={
|
|
'Documentation': "https://docs.develmaycare.com/en/python-scripttease/latest/",
|
|
'Source': "https://github.com/develmaycare/python-scripttease",
|
|
'Tracker': "https://github.com/develmaycare/python-scripttease/issues/"
|
|
},
|
|
packages=find_packages(exclude=["tests", "tests.*"]),
|
|
include_package_data=True,
|
|
install_requires=[
|
|
"jinja2",
|
|
"pygments",
|
|
"python-commonkit",
|
|
],
|
|
# 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",
|
|
"pytest",
|
|
],
|
|
test_suite='runtests.runtests',
|
|
entry_points={
|
|
'console_scripts': [
|
|
'tease = script_tease.cli:main_command',
|
|
],
|
|
},
|
|
)
|
|
|