-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 803 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
import site
site.ENABLE_USER_SITE=True
from setuptools import find_packages, setup
setup (
name="PyMatsci",
version="0.0.1",
author="Yunzhe Wang",
author_email="[email protected]",
description="A python library facilitating computaional materials science.",
#url = "",
#project_urls = {
# "Bug Tracker": "",
#},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License 2.0",
"Operating System :: OS Independent",
],
package_dir={"": "."},
#packages=find_packages(where="pyMatsci"),
packages = ["pyMatsci", "pyMatsci.engines", "pyMatsci.engines.vasp"],
install_requires=[""],
setup_requires=['pytest-runner'],
tests_require=['pytest==4.4.1'],
test_suite='tests',
)