From f6fe9aa8f03b4cd6ba5d2b3424a2920acde0cfca Mon Sep 17 00:00:00 2001 From: Kozo Nishida Date: Tue, 24 Sep 2024 11:14:12 +0900 Subject: [PATCH] Delete setup.py --- setup.py | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 setup.py diff --git a/setup.py b/setup.py deleted file mode 100644 index 339dd89..0000000 --- a/setup.py +++ /dev/null @@ -1,44 +0,0 @@ -import setuptools - -# Nasty but effective way to set __version__ -__version__=None -exec(open("pywikipathways/_version.py").read()) - -with open("README.md", "r") as fh: - long_description = fh.read() - -setuptools.setup( - name="pywikipathways", - version=__version__, - author="Kozo Nishida", - author_email="kozo.nishida@gmail.com", - maintainer='Kozo Nishida', - maintainer_email='kozo.nishida@gmail.com', - description="Python Client Package for WikiPathways", - long_description=long_description, - long_description_content_type="text/markdown", - url="https://github.com/kozo2/pywikipathways", - license='MIT License', - keywords=['data visualization', 'visualization', 'wikipathways', - 'bioinformatics', 'graph', 'network'], - packages=setuptools.find_packages(), - include_package_data=True, - install_requires=[ - 'requests', - 'pandas', - 'lxml' - ], - classifiers=[ - 'Intended Audience :: Science/Research', - 'Intended Audience :: Developers', - "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", - "Operating System :: OS Independent", - 'Topic :: Scientific/Engineering :: Bio-Informatics', - 'Topic :: Scientific/Engineering :: Information Analysis', - 'Topic :: Scientific/Engineering :: Mathematics', - 'Topic :: Scientific/Engineering :: Visualization' - ], - python_requires='>=3.8', - test_suite='tests', -)