-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
27 lines (25 loc) · 982 Bytes
/
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
from setuptools import setup, find_packages
import sys
import os.path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'levitate'))
from _version import hardcoded # We cannot import the _version module, but we can import from it.
with hardcoded() as version:
setup(
name='levitate',
version=version,
description='Python implementations from the Levitate research project',
long_description=open('README.rst', encoding='UTF-8').read(),
long_description_content_type='text/x-rst',
url='https://github.com/AppliedAcousticsChalmers/levitate',
author='Carl Andersson',
author_email='[email protected]',
license='MIT',
packages=find_packages('.'),
python_requires='>=3.6',
install_requires=[
'numpy',
'scipy'],
tests_require=['pytest', 'pytest-cov'],
setup_requires=['pytest-runner'],
include_package_data=True,
)