-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (35 loc) · 1.19 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
import setuptools
from setuptools import setup
from distutils.util import convert_path
import os
main_ns = {}
ver_path = convert_path('soundbay/version.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
VER = main_ns['__version__']
requirementPath = os.path.dirname(os.path.realpath(__file__)) + '/requirements.txt'
install_requires = []
if os.path.isfile(requirementPath):
with open(requirementPath) as f:
install_requires = f.read().splitlines()
setup(
name='soundbay',
version=VER,
packages=setuptools.find_packages(),
install_requires=install_requires,
license_files='LICENCE',
description='Deep Learning Framework for Bioacoustics',
author='soundbay',
author_email='[email protected]',
url='https://github.com/deep-voice/soundbay',
keywords=['Bioacoustics', 'Machine Learning'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)