-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (32 loc) · 1023 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
from setuptools import setup, find_packages
from glob import glob
__version__ = "0.0.20"
# add readme
with open('README.md', 'r') as f:
LONG_DESCRIPTION = f.read()
# add dependencies
with open('requirements.txt', 'r') as f:
INSTALL_REQUIRES = f.read().strip().split('\n')
setup(
name='TELF',
version=__version__,
author='',
author_email='',
description='Tensor Extraction of Latent Features (TELF)',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
package_dir={'TELF': 'TELF'},
platforms = ["Linux", "Mac", "Windows"],
include_package_data=True,
setup_requires=INSTALL_REQUIRES,
url='https://github.com/lanl/T-ELF',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.11.5',
'Topic :: Software Development :: Libraries'
],
python_requires='>=3.11.5',
install_requires=INSTALL_REQUIRES,
license='License :: BSD License',
)