Skip to content

Commit e9f7155

Browse files
authored
Update setup.py
1 parent 2d98cee commit e9f7155

1 file changed

Lines changed: 12 additions & 14 deletions

File tree

setup.py

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,21 @@
77
with open(ver_file) as f:
88
exec(f.read())
99

10-
opts = dict(name=NAME,
11-
maintainer=MAINTAINER,
12-
maintainer_email=MAINTAINER_EMAIL,
13-
description=DESCRIPTION,
14-
long_description=LONG_DESCRIPTION,
15-
url=URL,
16-
download_url=DOWNLOAD_URL,
17-
license=LICENSE,
10+
opts = dict(name="pynumdiff",
11+
maintainer="Floris van Breugel",
12+
maintainer_email="fvanbreugel@unr.edu",
13+
description="Numerical derivatives of noisy data",
14+
long_description="Numerical derivatives of noisy data",
15+
license="MIT License",
1816
classifiers=CLASSIFIERS,
19-
author=AUTHOR,
20-
author_email=AUTHOR_EMAIL,
17+
author="Floris van Breugel",
18+
author_email="fvanbreugel@unr.edu",
2119
platforms=PLATFORMS,
22-
version=VERSION,
20+
version="0.0.1",
2321
packages=PACKAGES,
24-
package_data=PACKAGE_DATA,
25-
install_requires=REQUIRES,
26-
requires=OPTIONAL_REQUIREMENTS)
22+
install_requires=["numpy",
23+
"matplotlib",
24+
"scipy"])
2725

2826

2927
if __name__ == '__main__':

0 commit comments

Comments
 (0)