-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (33 loc) · 1.11 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
#
# Copyright Tim Molteno 2020-21 tim@elec.ac.nz
#
from setuptools import setup, find_packages
import setuptools.command.test
with open("README.md", 'r', encoding="utf-8") as f:
readme = f.read()
setup(
name="fastfix",
version="0.1.0b4",
description="FastFix Positioning",
long_description=readme,
long_description_content_type="text/markdown",
url="http://github.com/elec-otago/projects/fastfix",
author="Tim Molteno",
test_suite="nose.collector",
tests_require=["nose", "ephem"],
author_email="tim@elec.ac.nz",
license="GPLv3",
install_requires=["numpy", "matplotlib",
"scipy", "pyfftw", "unlzw", "pymc3"],
packages=["fastfix"],
scripts=["bin/fastfix", "bin/acquire"],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Science/Research",
],
)