2019-08-04 03:21:54 -07:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-11-02 00:11:07 -08:00
|
|
|
from setuptools import setup, find_packages
|
2019-08-04 03:21:54 -07:00
|
|
|
|
2020-11-02 00:11:07 -08:00
|
|
|
|
|
|
|
with open('README.md', 'rt') as f:
|
2019-08-04 03:21:54 -07:00
|
|
|
long_description = f.read()
|
|
|
|
|
2020-11-02 00:11:07 -08:00
|
|
|
with open('lethe/VERSION.py', 'rt') as f:
|
|
|
|
version = f.readlines()[2].strip()
|
|
|
|
|
2019-08-04 03:21:54 -07:00
|
|
|
setup(name='lethe',
|
2020-11-02 00:11:07 -08:00
|
|
|
version=version,
|
2019-08-04 03:21:54 -07:00
|
|
|
description='Git-based snapshotting',
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
|
|
|
author='Jan Petykiewicz',
|
|
|
|
author_email='anewusername@gmail.com',
|
2020-11-02 00:11:07 -08:00
|
|
|
url='https://mpxd.net/code/jan/lethe',
|
|
|
|
packages=find_packages(),
|
|
|
|
package_data={
|
|
|
|
'lethe': ['py.typed'],
|
|
|
|
},
|
2019-08-04 03:21:54 -07:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'lethe=lethe:main',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
install_requires=[
|
|
|
|
'typing',
|
|
|
|
],
|
|
|
|
keywords=[
|
|
|
|
'git',
|
|
|
|
'snapshot',
|
|
|
|
'commit',
|
|
|
|
'refs',
|
|
|
|
'backup',
|
|
|
|
'undo',
|
|
|
|
'log',
|
|
|
|
'lab notebook',
|
|
|
|
'traceability',
|
|
|
|
],
|
|
|
|
classifiers=[
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'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',
|
|
|
|
],
|
|
|
|
)
|