Skip to content

Commit

Permalink
update setup.py:
Browse files Browse the repository at this point in the history
- drop support for Python 3.7
- update keywords and description
  • Loading branch information
schlegelp committed Mar 11, 2024
1 parent 21764ab commit d820236
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',

Expand All @@ -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
)

0 comments on commit d820236

Please sign in to comment.