-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
11 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,23 @@ | ||
from distutils.core import setup | ||
from os import path | ||
|
||
#from os import path | ||
import setuptools # noqa | ||
|
||
this_directory = path.abspath(path.dirname(__file__)) | ||
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: | ||
long_description = f.read() | ||
#this_directory = path.abspath(path.dirname(__file__)) | ||
#with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: | ||
# long_description = f.read() | ||
|
||
with open("README.md") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name="pyxtal", | ||
version="1.0.0", | ||
author="Scott Fredericks, Qiang Zhu", | ||
author_email="[email protected]", | ||
author="Scott Fredericks, Kevin Parrish, Qiang Zhu", | ||
author_email="[email protected]", | ||
description="Python code for generation of crystal structures based on symmetry constraints.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/qzhu2017/PyXtal", | ||
url="https://github.com/MaterSim/PyXtal", | ||
packages=[ | ||
"pyxtal", | ||
"pyxtal.database", | ||
|