You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
catcli/setup.py

55 lines
1.5 KiB
Python

7 years ago
from setuptools import setup, find_packages
from codecs import open
from os import path
import catcli
readme = 'README.md'
7 years ago
here = path.abspath(path.dirname(__file__))
2 years ago
read_readme = lambda f: open(f, 'r').read()
7 years ago
7 years ago
VERSION = catcli.__version__
REQUIRES_PYTHON = '>=3'
7 years ago
7 years ago
setup(
name='catcli',
7 years ago
version=VERSION,
7 years ago
description='The command line catalog tool for your offline data',
long_description=read_readme(readme),
2 years ago
long_description_content_type='text/markdown',
license_files = ('LICENSE',),
7 years ago
url='https://github.com/deadc0de6/catcli',
7 years ago
download_url = 'https://github.com/deadc0de6/catcli/archive/v'+VERSION+'.tar.gz',
2 years ago
options={"bdist_wheel": {"python_tag": "py3"}},
# include anything from MANIFEST.in
include_package_data=True,
7 years ago
author='deadc0de6',
7 years ago
author_email='deadc0de6@foo.bar',
7 years ago
license='GPLv3',
6 years ago
python_requires=REQUIRES_PYTHON,
7 years ago
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
7 years ago
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
7 years ago
],
7 years ago
keywords='catalog commandline indexer offline',
packages=find_packages(exclude=['tests*']),
install_requires=['docopt', 'anytree'],
7 years ago
extras_require={
'dev': ['check-manifest'],
'test': ['coverage', 'pytest', 'pytest-cov'],
},
entry_points={
'console_scripts': [
'catcli=catcli:main',
],
},
)