You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
659 B
21 lines
659 B
from setuptools import setup, find_packages |
|
|
|
setup( |
|
name='hindenburg-python-api', |
|
version='0.1.0', |
|
author='Your Name', |
|
author_email='your.email@example.com', |
|
description='A Python API for modifying Hindenburg project files and managing audio transcriptions.', |
|
packages=find_packages(where='src'), |
|
package_dir={'': 'src'}, |
|
install_requires=[ |
|
'lxml', # For XML handling |
|
'jsonschema', # For JSON validation |
|
], |
|
classifiers=[ |
|
'Programming Language :: Python :: 3', |
|
'License :: OSI Approved :: MIT License', |
|
'Operating System :: OS Independent', |
|
], |
|
python_requires='>=3.6', |
|
) |