-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
29 lines (26 loc) · 984 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name='scaleogram',
version='0.9.5',
author="Alexandre Sauve",
author_email="[email protected]",
description="User friendly scaleogram plot for Continuous Wavelet Transform",
long_description=long_description,
url="https://github.com/alsauve/scaleogram",
package_dir={'':'lib'},
packages=['scaleogram'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
],
install_requires = requirements,
)