Skip to content

Commit cd3003d

Browse files
committed
Added platform and author_email to setup.py
1 parent e37c7a7 commit cd3003d

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

setup.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,26 +22,27 @@ def readme():
2222
setup(
2323
name=name,
2424
author='Shaurita Hutchins & Robert Gilmore',
25+
author_email='datasnakes@gmail.com',
2526
description="A cli for running multiple pbs/qsub jobs with HTSeq's htseq-count script on a cluster.",
2627
version='0.1',
2728
long_description=readme(),
2829
url='https://github.com/datasnakes/htseq-count-cluster',
2930
license='MIT',
3031
keywords='science lab pyschiatry rnaseq htseq',
32+
platform='Linux',
3133
classifiers=[
32-
'Programming Language :: Python :: 3',
33-
'Operating System :: POSIX :: Linux',
34-
'Operating System :: Unix',
3534
'Natural Language :: English',
3635
'Programming Language :: Python :: 3 :: Only',
37-
'Programming Language :: Python :: 3.4',
3836
'Programming Language :: Python :: 3.5',
39-
'Programming Language :: Python :: 3.6'
37+
'Programming Language :: Python :: 3.6',
38+
'Programming Language :: Python :: 3.7'
4039
],
4140
# Packages will be automatically found if not in this list.
4241
packages=find_packages(),
43-
package_data={'HTSeqAnalysis': ['pbsjob/temp.pbs']},
4442
include_package_data=True,
43+
package_data={
44+
'HTSeqCountCluster': ['pbsjob/*.pbs'],
45+
},
4546
entry_points={
4647
'console_scripts': [
4748
'htseq-count-cluster=HTSeqCountCluster.htseq_count_cluster:main',

0 commit comments

Comments
 (0)