Skip to content

Commit ab46d68

Browse files
author
LandonTClipp
committed
fixed issue with config.yml not being included in builds
1 parent d138f0c commit ab46d68

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

setup.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#from distutils.core import setup
22
from setuptools import setup
3-
3+
import os
44
setup(
55
name='batch4py',
6-
version='0.1.0',
6+
version='0.2.0',
77
author='Landon T. Clipp',
88
author_email='[email protected]',
99
packages=['batch4py'],
@@ -14,5 +14,9 @@
1414
install_requires=[ 'pyyaml' ],
1515
url = 'https://github.com/TerraFusion/batch4py',
1616
download_url='https://github.com/TerraFusion/batch4py/archive/0.1.0.tar.gz',
17-
keywords = ['batch', 'torque', 'pbs', 'pbs-torque', 'hpc', 'python', 'python3', 'cluster' ],
17+
keywords = ['batch', 'torque', 'pbs', 'pbs-torque', 'hpc', 'python', 'python3', 'cluster',
18+
'scheduler', 'schedule' ],
19+
package_data = {'batch4py': [ os.path.join( '.', 'batch4py', 'config.yml') ] },
20+
include_package_data = True,
1821
)
22+

0 commit comments

Comments
 (0)