forked from wcxf/wcxf-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 770 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 770 Bytes
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
from setuptools import setup, find_packages
setup(name='wcxf',
version='1.2.3',
author='David M. Straub, Jason Aebischer',
author_email='david.straub@tum.de, jason.aebischer@tum.de',
license='MIT',
packages=find_packages(),
package_data={
'wcxf': ['data/*.yml',
'data/*.yaml',
'data/*.json',
'bases/*.json',
'bases/child/*.json',
]
},
install_requires=['pyyaml', 'ckmutil>=0.3', 'rundec>=0.5'],
extras_require={
'testing': ['nose', 'smeftrunner'],
},
entry_points={
'console_scripts': [
'wcxf = wcxf.cli:wcxf_cli',
'wcxf2eos = wcxf.cli:eos',
]
},
)