Skip to content

Commit 5c11645

Browse files
committed
update setup.py
1 parent 43827c5 commit 5c11645

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

setup.py

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,26 @@
11
from setuptools import setup
22

3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
36
setup(
47
name='FlowIO',
5-
version='0.9.6b',
8+
version='0.9.6',
69
packages=['flowio'],
710
package_data={'': []},
811
description='Flow Cytometry Standard I/O',
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
914
author="Scott White",
1015
author_email="[email protected]",
1116
license='BSD',
1217
url="https://github.com/whitews/flowio",
1318
requires=[],
14-
data_files=[("", ["LICENSE"])]
19+
data_files=[("", ["LICENSE"])],
20+
classifiers=[
21+
'Programming Language :: Python :: 3.8',
22+
'Programming Language :: Python :: 3.7',
23+
'Programming Language :: Python :: 3.6',
24+
'Programming Language :: Python :: 2.7'
25+
]
1526
)

0 commit comments

Comments
 (0)