forked from CitrineInformatics/dft-input-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 845 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
import os
from setuptools import setup
from setuptools import find_packages
with open(
os.path.join(
os.path.dirname(__file__), "src", "dftinputgen", "VERSION.txt"
)
) as fr:
version = fr.read().strip()
setup(
name="dftinputgen",
version=version,
description="Unopinionated library to generate input files for DFT codes",
url="https://github.com/CitrineInformatics/dft-input-gen",
author="Vinay Hegde",
author_email="vhegde@citrine.io",
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=["six", "numpy", "ase <= 3.17"],
entry_points={"console_scripts": ["dftinputgen = dftinputgen.cli:driver"]},
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.8",
],
)