-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (62 loc) · 1.84 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
56
57
58
59
60
61
62
63
64
#! /usr/bin/python
# -*- coding: utf-8 -*-
# Generic/Built-in
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='z2n-periodogram',
version='2.0.6',
license='MIT',
python_requires='>=3.6.9',
install_requires=[
'intel-openmp',
'click',
'pillow',
'click-shell',
'matplotlib',
'termtables',
'colorama',
'astropy',
'psutil',
'numpy',
'numba',
'icc-rt',
'scipy',
'h5py',
'tqdm',
'tbb',
],
tests_require=['pytest'],
extras_require={
"dev": [
"pytest",
"mkdocs",
"mkautodoc",
"markdown-katex",
],
},
entry_points='''
[console_scripts]
z2n=z2n.main:cli
''',
author='Yohan Alexander',
author_email='yohanfranca@gmail.com',
description='A package for interative periodograms analysis.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://z2n-periodogram.readthedocs.io',
project_urls={
"Documentation": "https://z2n-periodogram.readthedocs.io",
"Source": "https://github.com/yohanalexander/z2n-periodogram",
},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
],
packages=setuptools.find_namespace_packages(),
)