From 42f2395455831c2b1acfcafb3c56737a78ef5a5e Mon Sep 17 00:00:00 2001 From: Sarath Menon Date: Thu, 15 Feb 2024 18:33:14 +0100 Subject: [PATCH] update pyproject --- pyproject.toml | 1 + setup.py | 26 -------------------------- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 setup.py diff --git a/pyproject.toml b/pyproject.toml index 985e21e..3fff5ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,7 @@ dependencies=['numpy', 'pyscal3', 'spglib', ] +requires-python = ">=3.9,<3.12" [project.urls] Homepage = "https://pyscal.org" diff --git a/setup.py b/setup.py deleted file mode 100644 index 127689a..0000000 --- a/setup.py +++ /dev/null @@ -1,26 +0,0 @@ -from setuptools import setup, find_packages - - -with open('README.md') as readme_file: - readme = readme_file.read() - -setup( - name='pyscal_rdf', - version='0.1.6', - author='Abril Azocar Guzman, Sarath Menon', - author_email='sarath.menon@pyscal.org', - description='Ontology based structural manipulation and quering', - long_description=readme, - long_description_content_type='text/markdown', - packages=find_packages(include=['pyscal_rdf', 'pyscal_rdf.*']), - zip_safe=False, - download_url = 'https://github.com/pyscal/pyscal_rdf', - url = 'https://pyscal.org', - install_requires=['numpy', 'ase', 'rdflib', - 'pyyaml', 'graphviz', 'networkx', - 'ipycytoscape', 'pyscal3', 'spglib',], - classifiers=[ - 'Programming Language :: Python :: 3' - ], - include_package_data=True, -)