Skip to content

Commit 3e4e7fd

Browse files
committed
Add numpy dependency
1 parent 7c499fb commit 3e4e7fd

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

MANIFEST

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# file GENERATED by distutils, do NOT edit
2+
LICENSE
3+
README.md
4+
setup.cfg
5+
setup.py
6+
traittypes/__init__.py
7+
traittypes/_version.py
8+
traittypes/traittypes.py
9+
traittypes/tests/__init__.py
10+
traittypes/tests/test_traittypes.py

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@
7777
setuptools_args = {}
7878

7979
install_requires = setuptools_args['install_requires'] = [
80-
'traitlets>=4.2.2'
80+
'traitlets>=4.2.2',
81+
'numpy'
8182
]
8283

8384
extras_require = setuptools_args['extras_require'] = {

0 commit comments

Comments
 (0)