Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
whitews committed Aug 12, 2020
1 parent 43827c5 commit 5c11645
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
from setuptools import setup

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

setup(
name='FlowIO',
version='0.9.6b',
version='0.9.6',
packages=['flowio'],
package_data={'': []},
description='Flow Cytometry Standard I/O',
long_description=long_description,
long_description_content_type="text/markdown",
author="Scott White",
author_email="[email protected]",
license='BSD',
url="https://github.com/whitews/flowio",
requires=[],
data_files=[("", ["LICENSE"])]
data_files=[("", ["LICENSE"])],
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 2.7'
]
)

0 comments on commit 5c11645

Please sign in to comment.