-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
29 lines (28 loc) · 1.07 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
from setuptools import find_packages, setup
setup(
name="alitra",
description="Simple alignment and transformation between coordinate frames",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
version="1.1.3",
author="Equinor ASA",
license="MIT",
url="https://github.com/equinor/alitra",
packages=find_packages(where="src"),
package_dir={"": "src"},
classifiers=[
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
],
include_package_data=True,
install_requires=["scipy", "numpy", "dacite"],
python_requires=">=3.8",
extras_require={"dev": ["pytest", "black", "mypy", "pre-commit"]},
)