diff options
author | Matthias Baumgartner <dev@igsor.net> | 2023-03-04 16:51:11 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2023-03-04 16:51:11 +0100 |
commit | 54c1f6f845765fa7ed8720bbbc0130d99fc7a123 (patch) | |
tree | 43ffc9ae0276d4ff685b75d2991638bcf27e7f9c /setup.py | |
parent | bd484c470a71fb63c7aa3a65a427226aff02adaf (diff) | |
download | tagit-54c1f6f845765fa7ed8720bbbc0130d99fc7a123.tar.gz tagit-54c1f6f845765fa7ed8720bbbc0130d99fc7a123.tar.bz2 tagit-54c1f6f845765fa7ed8720bbbc0130d99fc7a123.zip |
setup script
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 29 |
1 files changed, 21 insertions, 8 deletions
@@ -1,27 +1,40 @@ -from setuptools import setup +from setuptools import setup, find_packages import os setup( + # package metadata name='tagit', - version='0.0.1', + version='0.23.03', author='Matthias Baumgartner', - author_email='dev@igsor.net', - description='A frontend to the Black Star File System.', - long_description=open(os.path.join(os.path.dirname(__file__), 'README')).read(), + 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.igsor.net/projects/blackstar/tagit/', + 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', - #'pyexiv2', (for test/utils/test_time.py) 'pyparsing' 'python-dateutil', 'pyyaml', 'requests', ), - python_requires=">=3.7", ) |