-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 923 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 923 Bytes
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
"""
:copyright:
David Sollberger (david.sollberger@gmail.com), 2022
:license:
None
"""
from setuptools import setup, find_packages
setup(
name="twistpy",
version="0.0.1",
description="Toolbox for Wavefield Inertial Sensing",
url="github.com/solldavid/twistpy",
author="The TwistPy Developers",
maintainer="David Sollberger",
maintainer_email="david.sollberger@gmail.com",
license="LGPLv3",
packages=find_packages(),
platforms="OS Independent",
classifiers=[
"Environment :: Console",
"Intended Audience :: Science / Research",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Natural Language :: English",
],
install_requires=["numpy", "scipy"],
test_suite="pytests",
tests_require=["pytest"],
)