from setuptools import setup, find_packages import os setup( # package metadata name='tagit', version='0.23.03', author='Matthias Baumgartner', author_email='dev@bsfs.io', description='The Black Star File System (BSFS) browser and tagger.', long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(), license='BSD', license_files=('LICENSE', ), url='https://www.bsfs.io/tagit/', download_url='https://pip.igsor.net', # packages packages=('tagit', ), # data files are included if mentioned in MANIFEST.in include_package_data=True, # entrypoints entry_points={ 'console_scripts': [ 'tagit = tagit.apps:main', ], }, # dependencies python_requires=">=3.7", install_requires=( 'kivy', 'pyparsing' 'python-dateutil', 'pyyaml', 'requests', ), )