-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (26 loc) · 843 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
from setuptools import setup, find_packages
with open("requirements.txt", "r") as f:
install_requires = [line.strip() for line in f]
# remove if the line starts with `git+`
install_requires = [
line for line in install_requires if not line.startswith("git+")
]
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="chemeleon",
version="0.1.2",
author="Hyunsoo Park",
author_email="[email protected]",
description="A Text-guided Crystal Structure Generation Model",
long_description=long_description,
packages=find_packages(),
long_description_content_type="text/markdown",
install_requires=install_requires,
include_package_data=True,
entry_points={
"console_scripts": [
"chemeleon=chemeleon.cli:cli",
],
},
)