Commit 8206e7e8 authored by Lukas Eller's avatar Lukas Eller

adapted setup again

parent df42ddc2
...@@ -9,26 +9,19 @@ README = (HERE / "README.md").read_text() ...@@ -9,26 +9,19 @@ README = (HERE / "README.md").read_text()
# This call to setup() does all the work # This call to setup() does all the work
setup( setup(
name="realpython-reader", name="measprocess",
version="1.0.0", version="0.5.0",
description="Read the latest Real Python tutorials", description="Collection of measurement processing tools",
long_description=README, long_description=README,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://github.com/realpython/reader", url="https://squid.nt.tuwien.ac.at/gitlab/leller/measprocess",
author="Real Python", author="MBB Group TU Wien",
author_email="office@realpython.com", author_email="lukas.eller@tuwien.ac.at",
license="MIT", license="MIT",
classifiers=[ classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
], ],
packages=["measprocess"], packages=["measprocess"],
include_package_data=True, include_package_data=True,
#install_requires=["feedparser", "html2text"], install_requires=["pandas", "matplotlib", "geopandas", "overpy", "shapely"],
#entry_points={
# "console_scripts": [
# "realpython=reader.__main__:main",
# ]
#},
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment