@@ -22,26 +22,27 @@ def readme():
22
22
setup (
23
23
name = name ,
24
24
author = 'Shaurita Hutchins & Robert Gilmore' ,
25
+ author_email = 'datasnakes@gmail.com' ,
25
26
description = "A cli for running multiple pbs/qsub jobs with HTSeq's htseq-count script on a cluster." ,
26
27
version = '0.1' ,
27
28
long_description = readme (),
28
29
url = 'https://github.com/datasnakes/htseq-count-cluster' ,
29
30
license = 'MIT' ,
30
31
keywords = 'science lab pyschiatry rnaseq htseq' ,
32
+ platform = 'Linux' ,
31
33
classifiers = [
32
- 'Programming Language :: Python :: 3' ,
33
- 'Operating System :: POSIX :: Linux' ,
34
- 'Operating System :: Unix' ,
35
34
'Natural Language :: English' ,
36
35
'Programming Language :: Python :: 3 :: Only' ,
37
- 'Programming Language :: Python :: 3.4' ,
38
36
'Programming Language :: Python :: 3.5' ,
39
- 'Programming Language :: Python :: 3.6'
37
+ 'Programming Language :: Python :: 3.6' ,
38
+ 'Programming Language :: Python :: 3.7'
40
39
],
41
40
# Packages will be automatically found if not in this list.
42
41
packages = find_packages (),
43
- package_data = {'HTSeqAnalysis' : ['pbsjob/temp.pbs' ]},
44
42
include_package_data = True ,
43
+ package_data = {
44
+ 'HTSeqCountCluster' : ['pbsjob/*.pbs' ],
45
+ },
45
46
entry_points = {
46
47
'console_scripts' : [
47
48
'htseq-count-cluster=HTSeqCountCluster.htseq_count_cluster:main' ,
0 commit comments