Skip to content

Commit

Permalink
Edited setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bjmorgan committed Jun 21, 2024
1 parent a7b2ad9 commit 04931a3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from bsym.version import __version__ as VERSION

readme = 'README.md'
long_description = open( readme ).read()
long_description = open(readme).read()

config = {
'description': 'A Basic Symmetry Module',
Expand All @@ -14,8 +14,10 @@
'download_url': "https://github.com/bjmorgan/bsym/archive/%s.tar.gz" % (VERSION),
'author_email': '[email protected]',
'version': VERSION,
'install_requires': open( 'requirements.txt' ).read(),
'python_requires': '>=3.5',
'install_requires': ['numpy',
'pymatgen',
'tqdm'],
'python_requires': '>=3.7',
'license': 'MIT',
'packages': ['bsym', 'bsym.interface'],
'scripts': [],
Expand Down

0 comments on commit 04931a3

Please sign in to comment.