-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.57 KB
/
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
38
39
40
41
import pathlib
import setuptools
setuptools.setup(
name="imputegap",
version="1.0.4",
description="A Library of Imputation Techniques for Time Series Data",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/eXascaleInfolab/ImputeGAP",
author="Quentin Nater",
author_email="[email protected]",
license="MIT License",
project_urls = {
"Documentation": "https://exascaleinfolab.github.io/ImputeGAP/",
"Source" : "https://github.com/eXascaleInfolab/ImputeGAP"
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.10, <3.13",
install_requires=open('requirements.txt').read().splitlines(),
packages=setuptools.find_packages(),
include_package_data=True,
package_data={
'imputegap': [
'assets/*.png', # Include logo
'env/*.toml', # Include TOML files from env
'params/*.toml', # Include TOML files from params
'dataset/*.txt', # Include TXT files from dataset
'algorithms/lib/*.dll', # Include DLL files from algorithms/lib (for Windows)
'algorithms/lib/*.so' # Include SO files from algorithms/lib (for Linux/Unix)
],
},
entry_points={"console_scripts": ["imputegap = imputegap.runner_display:display_title"]}
)