Skip to content

Commit 282ed85

Browse files
committed
Fixing install.
1 parent e50484c commit 282ed85

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import os
44

5-
from setuptools import setup
5+
from setuptools import setup, find_packages
66

77
import versioneer
88

@@ -20,7 +20,7 @@
2020
"Development Status :: 4 - Beta",
2121
"Programming Language :: Python :: 3.7",
2222
],
23-
packages=["ORBIT"],
23+
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
2424
install_requires=[
2525
"numpy",
2626
"matplotlib",

0 commit comments

Comments
 (0)