-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1.42 KB
/
setup.py
File metadata and controls
32 lines (31 loc) · 1.42 KB
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
from setuptools import setup, find_packages
setup(
name='hygraph_core', # Name of your package
version='0.2.8', # Version of your package
description='A package for managing and analyzing HyGraph data',
long_description=open('README.md').read(), # Read the content of README.md
long_description_content_type='text/markdown',
author='Mouna',
author_email='',
url='https://github.com/', # URL to the project repository
packages=find_packages(), # Automatically find packages in the directory
install_requires=[
'numpy', # For numerical operations
'pandas', # For timestamp management and data manipulation
'xarray', # For handling multidimensional time series
'scipy', # For scientific computations, e.g., distance metrics
'fastdtw', # For Dynamic Time Warping similarity computation
'networkx', # For graph management and operations
'matplotlib', # Optional, for visualization of time series or graphs
'scikit-learn', # Optional, for advanced similarity metrics or clustering (cosine similarity, etc.)
'igraph',
'statsmodels',
'watchdog'
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6', # Specify required Python version
)