diff --git a/setup.py b/setup.py index f00421c1cca8236a22466455fbe8f2af19973e2e..899c34813163fbedc060c35acbacc2c4e66df405 100644 --- a/setup.py +++ b/setup.py @@ -9,26 +9,19 @@ README = (HERE / "README.md").read_text() # This call to setup() does all the work setup( - name="realpython-reader", - version="1.0.0", - description="Read the latest Real Python tutorials", + name="measprocess", + version="0.5.0", + description="Collection of measurement processing tools", long_description=README, long_description_content_type="text/markdown", - url="https://github.com/realpython/reader", - author="Real Python", - author_email="office@realpython.com", + url="https://squid.nt.tuwien.ac.at/gitlab/leller/measprocess", + author="MBB Group TU Wien", + author_email="lukas.eller@tuwien.ac.at", license="MIT", classifiers=[ - "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", ], packages=["measprocess"], include_package_data=True, - #install_requires=["feedparser", "html2text"], - #entry_points={ - # "console_scripts": [ - # "realpython=reader.__main__:main", - # ] - #}, + install_requires=["pandas", "matplotlib", "geopandas", "overpy", "shapely"], )