lethe/setup.py

57 lines
1.5 KiB
Python
Raw Normal View History

2019-02-11 01:17:07 -08:00
#!/usr/bin/env python3
from setuptools import setup, find_packages
2019-02-11 01:17:07 -08:00
with open('README.md', 'rt') as f:
2019-02-11 01:17:07 -08:00
long_description = f.read()
with open('lethe/VERSION.py', 'rt') as f:
version = f.readlines()[2].strip()
2020-12-21 21:59:19 -08:00
2019-02-11 01:17:07 -08:00
setup(name='lethe',
version=version,
2019-02-11 01:17:07 -08:00
description='Git-based snapshotting',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jan Petykiewicz',
2021-07-11 17:21:29 -07:00
author_email='jan@mpxd.net',
url='https://mpxd.net/code/jan/lethe',
packages=find_packages(),
package_data={
'lethe': ['py.typed'],
},
2019-02-11 01:17:07 -08:00
entry_points={
'console_scripts': [
'lethe=lethe:endpoints.main',
'lethe-push=lethe:endpoints.push',
'lethe-fetch=lethe:endpoints.fetch',
2019-02-11 01:17:07 -08:00
],
},
install_requires=[
'typing',
],
keywords=[
'git',
'snapshot',
'commit',
'refs',
'backup',
'undo',
'log',
'lab notebook',
'traceability',
],
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Software Development :: Version Control :: Git',
'Topic :: Utilities',
],
)