-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (32 loc) · 1.09 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
import setuptools
import tfest
with open("README.md", "r", encoding="utf-8") as fh:
README = fh.read()
version = tfest.__version__
setuptools.setup(
name = 'tfest',
packages = ['tfest'],
version = version,
license="""MIT""",
description = """Transfer function estimation based on frequency response.""",
long_description_content_type="text/markdown",
long_description=README,
author = 'Giulio Vaccari',
author_email = 'io@giuliovaccari.it',
url = 'https://github.com/giuliovv/tfest',
download_url = 'https://github.com/giuliovv/tfest/archive/refs/tags/v'+version+'-alpha.tar.gz',
keywords = ['tfest', 'frequency', 'matlab'],
install_requires=[
'matplotlib',
'numpy',
'scipy'
],
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
python_requires=">=3.6",
)