-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (28 loc) · 964 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
29
30
31
32
33
from setuptools import setup, find_packages, find_namespace_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="learn2therm",
version="2022.10", # Required
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BeckResearchLab/learn2therm",
author="Evan Komp, Humood Alanzi, David Beck",
author_email="[email protected]",
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
keywords="nlp, proteins",
packages=find_namespace_packages(),
python_requires=">=3.7, <4",
extras_require={
"test": ["coverage", 'pytest'],
},
package_data={},
data_files=None,
entry_points={},
)