-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 1008 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
28
from setuptools import setup, find_packages
# Function to read the requirements from the requirements.txt file
def load_requirements(filename='requirements.txt'):
with open(filename, 'r') as file:
return file.read().splitlines()
setup(
name='slmat',
version='2024.8.31',
author='Kamal Choudhary',
author_email='[email protected]',
description='ServerLess Materials Design',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/deepmaterials/slmat',
packages=find_packages(),
install_requires=load_requirements(), # Load dependencies from requirements.txt
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.9',
)