diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..224a779 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index 5107f45..daac0b0 100644 --- a/setup.py +++ b/setup.py @@ -3,5 +3,12 @@ from setuptools import setup, find_packages setup( name="nd2reader", packages=find_packages(), - version="0.9.7" -) \ No newline at end of file + version="1.0.0", + description='A tool for reading ND2 files produced by NIS Elements', + author='Jim Rybarski', + author_email='jim@rybarski.com', + url='https://github.com/jimrybarski/nd2reader', + download_url='https://github.com/jimrybarski/nd2reader/tarball/1.0.0', + keywords=['nd2', 'nikon', 'microscopy', 'NIS Elements'], + classifiers=[], +)