File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77with 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
2927if __name__ == '__main__' :
You can’t perform that action at this time.
0 commit comments