Spaces:
Sleeping
Sleeping
File size: 1,696 Bytes
c26a611 |
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
"""
MLSTRUCT-FP - SETUP
Setup distribution.
"""
# Library imports
from setuptools import setup, find_packages
import MLStructFP
# Load readme
with open('README.rst') as f:
long_description = f.read()
# Load requirements
requirements = [
'IPython >= 8.12.3',
'matplotlib >= 3.5.3',
'numpy >= 1.18.5',
'opencv-python <= 4.5.3.56',
'Pillow >= 10.4.0',
'plotly >= 5.24.1',
'requests >= 2.32.3',
'tabulate >= 0.9.0'
]
# Setup library
setup(
author=MLStructFP.__author__,
author_email=MLStructFP.__email__,
classifiers=[
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Scientific/Engineering :: Visualization'
],
description=MLStructFP.__description__,
long_description=long_description,
include_package_data=True,
install_requires=requirements,
extras_require={
'test': ['nose2[coverage_plugin]', 'pytest']
},
keywords=MLStructFP.__keywords__,
name='mlstructfp',
packages=find_packages(exclude=[
'.idea',
'.ipynb_checkpoints',
'test'
]),
platforms=['any'],
project_urls={
'Bug Tracker': MLStructFP.__url_bug_tracker__,
'Documentation': MLStructFP.__url_documentation__,
'Source Code': MLStructFP.__url_source_code__
},
python_requires='>=3.8',
url=MLStructFP.__url__,
version=MLStructFP.__version__
)
|