-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 966 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
import os
setup_dir = os.path.dirname(__file__)
with open(os.path.join(setup_dir, 'README.md')) as f:
long_description = f.read()
setup(
name='mopro',
description='FACT Monte Carlo Production',
long_description=long_description,
version='3.0.2',
author='Maximilian Nöthe',
author_email='[email protected]',
packages=find_packages(),
install_requires=[
'ruamel.yaml',
'click',
'peewee~=3.8',
'pandas',
'retrying',
'jinja2',
'pyzmq',
'pymysql',
],
setup_requires=['pytest_runner'],
entry_points={
'console_scripts': [
'mopro_install_root = mopro.installation.root:main',
'mopro_install_mars = mopro.installation.mars:main',
'mopro_install_corsika = mopro.installation.corsika:main',
],
},
package_data={'mopro': ['resources/*']},
)