mirror of
https://github.com/deadc0de6/catcli
synced 2024-11-11 13:11:00 +00:00
40 lines
965 B
Python
40 lines
965 B
Python
|
from setuptools import setup, find_packages
|
||
|
from codecs import open
|
||
|
from os import path
|
||
|
import catcli
|
||
|
|
||
|
here = path.abspath(path.dirname(__file__))
|
||
|
|
||
|
# Get the long description from the README file
|
||
|
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
||
|
long_description = f.read()
|
||
|
|
||
|
setup(
|
||
|
name='catcli',
|
||
|
version=catcli.__version__,
|
||
|
|
||
|
description='The command line catalog tool for your offline data',
|
||
|
long_description=long_description,
|
||
|
url='https://github.com/deadc0de6/catcli',
|
||
|
|
||
|
author='deadc0de6',
|
||
|
author_email='deadc0de6@foo',
|
||
|
|
||
|
license='GPLv3',
|
||
|
|
||
|
keywords='catalog commandline indexer offline',
|
||
|
packages=find_packages(exclude=['tests*']),
|
||
|
install_requires=['docopt', 'anytree','psutil'],
|
||
|
|
||
|
extras_require={
|
||
|
'dev': ['check-manifest'],
|
||
|
'test': ['coverage', 'pytest', 'pytest-cov'],
|
||
|
},
|
||
|
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'catcli=catcli:main',
|
||
|
],
|
||
|
},
|
||
|
)
|