-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
42 lines (38 loc) · 1.22 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
35
36
37
38
39
40
41
42
#!/usr/bin/env python3
import os.path
from setuptools import setup, find_packages
# https://packaging.python.org/guides/single-sourcing-package-version/
version = {}
with open(os.path.join("quaternions", "version.py")) as fp:
exec(fp.read(), version)
setup(
name='satellogic_quaternions',
version=version["__version__"],
author='Matias Graña, Enrique Toomey, Slava Kerner',
author_email='[email protected]',
description='This is a library for dealing with quaternions in Python in a unified way.',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests"]),
license="GPLv3",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
install_requires=[
'numpy',
],
extras_require={
'dev': [
'flake8 >= 2.5.4',
'hypothesis',
'pytest',
'pytest-coverage',
]
}
)