-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 1.06 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
def get_requirements():
with open('requirements.txt') as requirements:
req = requirements.read().splitlines()
return req
setuptools.setup(
name="audio-cat",
version="0.0.31",
author="Nathaniel Cherian",
author_email="[email protected]",
description="audio splitter and labeler",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nathanielCherian/audio-cat",
download_url = 'https://github.com/nathanielCherian/audio-cat/archive/v0.0.3.tar.gz',
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
'Development Status :: 3 - Alpha',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
license='MIT',
python_requires='>=3.6',
install_requires= get_requirements(),
entry_points = {
'console_scripts': ['audio-cat=audiocat.command_line:main'],
}
)