-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (37 loc) · 1.32 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
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(this_directory, 'ffta/__version__.py')) as f:
__version__ = f.read().split("'")[1]
setup(
name='FFTA',
version=__version__,
description='Fast Free Transient Analysis',
long_description=long_description,
long_description_content_type='text/markdown',
author='Rajiv Giridharagopal',
author_email='[email protected]',
license='MIT',
url='https://github.com/rajgiriUW/ffta/',
packages=find_packages(exclude=['xop', 'docs', 'data', 'notebooks']),
install_requires=['numpy>=1.20.0',
'scipy>=1.4.1',
'igor2>=0.5.2',
'numexpr>=2.7.1',
'pyUSID>=0.0.11',
'pywavelets>=1.1.1',
'sidpy>=0.12.0',
'pandas>=1.1.0',
'BGlib>=0.0.3',
'torch>=2.1.2',
'scikit-image>=0.19.2'
],
test_suite='pytest',
# entry_points={
# 'console_scripts': [
# 'ffta-analyze = ffta.analyze:main',
# ],
# },
)