-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- drop support for Python 3.7 - update keywords and description
- Loading branch information
Showing
1 changed file
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
version=verstr, | ||
packages=find_packages(), | ||
license='GNU GPL V3', | ||
description='Tools to work with auto-segmented FAFB data', | ||
description='Tools to work with the FlyWire and Google segmentations of the FAFB EM dataset', | ||
long_description=open('README.md').read(), | ||
long_description_content_type='text/markdown', | ||
url='https://fafbseg-py.readthedocs.io', | ||
|
@@ -31,7 +31,7 @@ | |
}, | ||
author='Philipp Schlegel', | ||
author_email='[email protected]', | ||
keywords='FAFB neuron segmentation FlyWire Google synapses', | ||
keywords='FAFB neuron segmentation FlyWire Google synapses connectome fly brain navis cave', | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
|
||
|
@@ -41,14 +41,13 @@ | |
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', | ||
|
||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
], | ||
install_requires=requirements, | ||
extras_require={}, | ||
python_requires='>=3.7', | ||
python_requires='>=3.8', | ||
zip_safe=False, | ||
include_package_data=True | ||
) |