From eda6501207fa0528ab4bff1d3406a1d5d6df9ad0 Mon Sep 17 00:00:00 2001 From: jacquelynsmale <34557291+jacquelynsmale@users.noreply.github.com> Date: Mon, 9 Jan 2023 17:54:46 -0900 Subject: [PATCH] remove unncecessary things --- MANIFEST.in | 5 ----- setup.py | 53 ----------------------------------------------------- 2 files changed, 58 deletions(-) delete mode 100644 setup.py diff --git a/MANIFEST.in b/MANIFEST.in index 7043374..1b33785 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1 @@ -include LICENSE -include README.md - -graft hyp3_sdk - global-exclude *.py[cod] __pycache__ *.so diff --git a/setup.py b/setup.py deleted file mode 100644 index c492af0..0000000 --- a/setup.py +++ /dev/null @@ -1,53 +0,0 @@ -import os - -from setuptools import find_packages, setup - -_HERE = os.path.abspath(os.path.dirname(__file__)) -with open(os.path.join(_HERE, 'README.md'), 'r') as f: - long_desc = f.read() - -setup( - name='hyp3_sdk', - use_scm_version=True, - description='A python wrapper around the HyP3 API', - long_description=long_desc, - long_description_content_type='text/markdown', - - url='https://github.com/ASFHyP3/hyp3-sdk', - - author='ASF APD/Tools Team', - author_email='uaf-asf-apd@alaska.edu', - - license='BSD', - include_package_data=True, - - classifiers=[ - 'Intended Audience :: Science/Research', - 'License :: OSI Approved :: BSD License', - 'Natural Language :: English', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', - ], - - python_requires='~=3.8', - - install_requires=[ - 'python-dateutil', - 'requests', - 'urllib3', - 'tqdm', - ], - - extras_require={ - 'develop': [ - 'pytest', - 'pytest-cov', - 'responses', - ] - }, - - packages=find_packages(), - - zip_safe=False, -)