Skip to content

Commit

Permalink
update setup.py description & add Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
whitews committed Sep 8, 2021
1 parent efa4922 commit 9d50673
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
from setuptools import setup

with open("README.md", "r") as fh:
with open('README.md', 'r') as fh:
long_description = fh.read()

setup(
name='FlowIO',
version='0.9.12b',
packages=['flowio'],
package_data={'': []},
description='Flow Cytometry Standard I/O',
description='FlowIO is a Python library for reading / writing Flow Cytometry Standard (FCS) files',
long_description=long_description,
long_description_content_type="text/markdown",
author="Scott White",
author_email="[email protected]",
long_description_content_type='text/markdown',
author='Scott White',
author_email='[email protected]',
license='BSD',
url="https://github.com/whitews/flowio",
url='https://github.com/whitews/flowio',
requires=[],
data_files=[("", ["LICENSE"])],
data_files=[('', ['LICENSE'])],
classifiers=[
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6'
Expand Down

0 comments on commit 9d50673

Please sign in to comment.