-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
27 lines (24 loc) · 854 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
from bsym.version import __version__ as VERSION
readme = 'README.md'
long_description = open(readme).read()
config = {
'description': 'A Basic Symmetry Module',
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'author': 'Benjamin J. Morgan',
'author_email': 'b.j.morgan@bath.ac.uk',
'url': 'https://github.com/bjmorgan/bsym',
'download_url': "https://github.com/bjmorgan/bsym/archive/%s.tar.gz" % (VERSION),
'author_email': 'b.j.morgan@bath.ac.uk',
'version': VERSION,
'install_requires': ['numpy<2.0',
'pymatgen',
'tqdm'],
'python_requires': '>=3.9',
'license': 'MIT',
'packages': ['bsym', 'bsym.interface'],
'scripts': [],
'name': 'bsym'
}
setup(**config)