File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
3
+ with open ("README.md" , "r" ) as fh :
4
+ long_description = fh .read ()
5
+
3
6
setup (
4
7
name = 'FlowIO' ,
5
- version = '0.9.6b ' ,
8
+ version = '0.9.6 ' ,
6
9
packages = ['flowio' ],
7
10
package_data = {'' : []},
8
11
description = 'Flow Cytometry Standard I/O' ,
12
+ long_description = long_description ,
13
+ long_description_content_type = "text/markdown" ,
9
14
author = "Scott White" ,
10
15
11
16
license = 'BSD' ,
12
17
url = "https://github.com/whitews/flowio" ,
13
18
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
+ ]
15
26
)
You can’t perform that action at this time.
0 commit comments