-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (25 loc) · 1.03 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
from setuptools import setup, find_packages
#from beamshapes.version import __version__
version_number = {}
with open("beamshapes/version.py") as fp:
exec(fp.read(), version_number)
# link to test upload and fresh install on Test PyPi https://packaging.python.org/guides/using-testpypi/
setup(name='beamshapes',
version=version_number['__version__'],
description='Acoustic beamshape modelling for various sources',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/thejasvibr/bat_beamshapes.git',
author='Thejasvi Beleyur',
author_email='thejasvib@gmail.com',
license='MIT',
install_requires=['joblib','numpy','sympy','mpmath',
'scipy','matplotlib','tqdm'],
packages=find_packages(),
zip_safe=False,
include_package_data=True,
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Programming Language :: Python :: 3'
])