-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (26 loc) · 867 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="tapify",
version="0.1",
author="Aarya Patil",
author_email="[email protected]",
description="A python package for multitaper periodograms",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aaryapatil/tapify",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research"
],
packages=setuptools.find_packages(),
install_requires=["numpy", "scipy"],
extras_require={
"extras": ["astropy", "nfft"],
"tests": ["pytest"]}
)