Skip to content

Commit 3f485ae

Browse files
authored
Merge pull request #15 from echoix/patch-1
Added packages file find, and dependencies
2 parents 1646017 + 367cae8 commit 3f485ae

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@
1313
long_description=long_description,
1414
long_description_content_type="text/markdown",
1515
url="https://github.com/SherbyRobotics/pyro",
16-
packages=['pyro'],
16+
packages=setuptools.find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
17+
python_requires='>=3.4'
18+
install_requires=[
19+
'numpy>=1.10',
20+
'matplotlib>3.0',
21+
'scipy>=1.2'
22+
],
1723
classifiers=[
1824
"Programming Language :: Python :: 3",
1925
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)