-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 855 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
#!/usr/bin/env python3
"""thematic-fit-estimation setup.py.
This file details modalities for packaging the thematic-fit-estimation package.
"""
from setuptools import setup
with open('README.md', 'r',) as fh:
long_description = fh.read()
setup(
name='thematic-fit-estimation',
description='Estimation of thematic fit performances',
long_description=long_description,
long_description_content_type='text/markdown',
version='0.1.0',
license='MIT',
platforms=['any'],
packages=['tfe', 'tfe.logging', 'tfe.exceptions',
'tfe.utils', 'tfe.core'],
package_data={'tfe': ['logging/*.yml']},
include_package_data=True,
entry_points={
'console_scripts': [
'tfe = tfe.main:main'
],
},
install_requires=['pyyaml>=4.2b1','numpy','scipy>=0.19'],
zip_safe=False,
)