-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 908 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
import sys
from setuptools import setup, find_packages
# Check Python version
if sys.version_info < (3, 10):
sys.exit("Python 3.10 or higher is required for this project.")
# Dependencies list
with open('requirements.txt') as f:
requires = f.read().splitlines()
setup(
name="artc",
version="1.0b2",
description="Beta version of the ARtC (Audio Real-time Comparator) core",
long_description="A tool designed to compare and analyze audio files in real time.",
author="Nicolás Cereijo Ranchal",
author_email="nicolascereijoranchal@gmail.com",
url="https://github.com/NicolasCereijo/artc",
keywords=["audio", "analysis", "comparison", "real-time", "data collection"],
license="MIT",
install_requires=requires,
packages=find_packages(),
package_data={'core.configurations': ['default_configurations.json'],
'cli': ['commands.json']}
)