diff --git a/requirements.txt b/requirements.txt index d8359b6..0de0154 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,5 @@ numpy scipy matplotlib -Click>=7.0 packaging unyt diff --git a/requirements_dev.txt b/requirements_dev.txt index 1ab1a9d..fae8ee6 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -1,11 +1,5 @@ pip>=21.1 -bump2version wheel==0.33.6 -watchdog==0.9.0 -tox==3.14.0 -coverage==4.5.4 -Sphinx==1.8.5 twine==1.14.0 pytest pytest-cov - diff --git a/setup.cfg b/setup.cfg index 4336d71..b8a1655 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,16 +1,3 @@ -[bumpversion] -current_version = 0.1.1 -commit = True -tag = True - -[bumpversion:file:setup.py] -search = version='{current_version}' -replace = version='{new_version}' - -[bumpversion:file:pyVBRc/__init__.py] -search = __version__ = '{current_version}' -replace = __version__ = '{new_version}' - [bdist_wheel] universal = 1 diff --git a/setup.py b/setup.py index ad67d62..947b615 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ python_requires=">=3.9", classifiers=[ "Development Status :: 2 - Pre-Alpha", - "Intended Audience :: Developers", + "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 3", @@ -35,8 +35,8 @@ }, install_requires=requirements, license="MIT license", - long_description="python utilities for working with the Very Broadband " - "Rheology Calculator, see https://github.com/vbr-calc/pyVBRc", + long_description=readme, + long_description_content_type="text/markdown", include_package_data=True, package_data={"": ["sample_data/*.mat"]}, keywords="pyVBRc", @@ -46,5 +46,4 @@ tests_require=test_requirements, url="https://github.com/vbr-calc/pyVBRc", version="0.1.1", - zip_safe=False, )