-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (39 loc) · 1.41 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
42
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as f:
requirements = f.read().splitlines()
setup(
name="geniusrise-audio",
version="0.1.12",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=requirements,
python_requires=">=3.10",
author="ixaxaar",
author_email="[email protected]",
description="Audio bolts for geniusrise",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/geniusrise/geniusrise-audio",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
keywords="mlops, llm, geniusrise, machine learning, data processing",
project_urls={
"Bug Reports": "https://github.com/geniusrise/geniusrise-audio/issues",
"Source": "https://github.com/geniusrise/geniusrise-audio",
"Documentation": "https://docs.geniusrise.ai/",
},
package_data={
"geniusrise": [],
},
extras_require={
"dev": ["check-manifest"],
"test": ["coverage"],
},
)