We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c949a9 commit 2c85018Copy full SHA for 2c85018
setup.py
@@ -0,0 +1,22 @@
1
+import setuptools
2
+
3
+with open("README.md", "r") as fh:
4
+ long_description = fh.read()
5
6
+setuptools.setup(
7
+ name="splearn",
8
+ version="0.1a1",
9
+ author="Jingles",
10
+ author_email="[email protected]",
11
+ description="splearn: package for signal processing and machine learning with Python.",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
+ url="https://github.com/jinglescode/python-signal-processing",
15
+ packages=setuptools.find_packages(),
16
+ classifiers=[
17
+ "Programming Language :: Python :: 3",
18
+ "License :: OSI Approved :: BSD License",
19
+ "Operating System :: OS Independent",
20
+ ],
21
+ python_requires='>=3.6',
22
+)
tests/README.md
0 commit comments