-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
55 lines (52 loc) · 1.56 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
43
44
45
46
47
48
49
50
51
52
53
54
55
import setuptools
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name="allantoolkit",
version='0.0.1',
description="A fork of Anders E.E. Wallin's "
"[AllanTools](https://github.com/aewallin/allantools): "
"Allan deviation and related time/frequency statistics "
"toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
author="Alvise Vianello",
author_email="[email protected]",
url="https://gitlab.com/amv213/allantoolkit",
classifiers=[
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later "
"(GPLv3+)",
"Topic :: Scientific/Engineering",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
],
packages=setuptools.find_packages(),
python_requires='>=3.8',
install_requires=[
'matplotlib',
'numpy',
'pyyaml',
'scipy',
'setuptools',
],
extras_require={
"dev": [
'coverage',
'pytest',
],
"doc": [
'myst-parser',
'sphinx',
'sphinx-book-theme',
'sphinx_copybutton',
'sphinx_togglebutton',
'sphinx-panels',
],
},
include_package_data=True,
)
# to build the package run the following:
# python setup.py sdist bdist_wheel
# twine check dist/*