-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·34 lines (30 loc) · 1.14 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
from setuptools import setup, find_packages
import re
with open('README.md') as f:
readme = f.read()
# extract version
with open('freefield/__init__.py') as file:
for line in file.readlines():
m = re.match("__version__ *= *['\"](.*)['\"]", line)
if m:
version = m.group(1)
setup(name='freefield',
version=version,
description='Toolbox for Experiments on Spatial Hearing.',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/OleBialas/freefield_toolbox.git',
author='Ole Bialas',
author_email='[email protected]',
license='MIT',
python_requires='>=3.6',
install_requires=['numpy'],
packages=find_packages(),
package_data={'freefield': ['data/tables/*', 'data/sounds/*',
'data/rcx/*', 'data/models/*',
'data/models/pose_model/*',
'data/models/pose_model/variables/*',
'tests/*', 'tests/images/*']},
include_package_data=True,
zip_safe=False)
# add pypi.org/classifiers