Skip to content

Commit 40afc0d

Browse files
author
André Gaul
committed
prepare for pip upload
1 parent d180732 commit 40afc0d

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
*.pyc
22
.*.swp
33
build
4+
dist
5+
MANIFEST

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include README.md
2+
recursive-include pseudopy *.py

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,13 @@ def read(fname):
1010
setup(name='pseudopy',
1111
packages=['pseudopy'],
1212
version='1.0.0',
13-
description='Compute and visualize pseudospectra of matrices (like eigtool)',
13+
description='Compute and visualize pseudospectra of'
14+
+ ' matrices (like eigtool)',
1415
long_description=read('README.md'),
1516
author='André Gaul',
1617
author_email='[email protected]',
1718
url='https://github.com/andrenarchy/pseudopy',
19+
requires=['scipy (>=0.12)', 'matplotlib (>=1.2.1)'],
1820
classifiers=[
1921
'Development Status :: 4 - Beta',
2022
'Intended Audience :: Science/Research',

0 commit comments

Comments
 (0)