Skip to content

Commit

Permalink
fix setup folder no being copied during installation
Browse files Browse the repository at this point in the history
  • Loading branch information
marinang committed Feb 1, 2020
1 parent f6697ce commit 581af17
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,11 @@ def run(self):
os.system("rm -rf ./simprod.egg-info")


print(find_packages())

setup(name = 'simprod',
version = '1.0',
packages = find_packages(),
packages = find_packages("."),
scripts = ['./simprod/scripts/simprod'],
description = 'Mini framework to send LHCb simulation jobs into lxplus or a slurm batch system (with access to cvmfs)!',
author = 'Matthieu Marinangeli',
Expand All @@ -208,6 +210,7 @@ def run(self):
'Programming Language :: Python :: 3.7',
],
platforms = 'Any',
cmdclass={ 'install': PostInstallSetting}
cmdclass={ 'install': PostInstallSetting},
package_data={"simprod": ["simjob/setup/*/*.sh"]}
)

0 comments on commit 581af17

Please sign in to comment.