-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (34 loc) · 1.16 KB
/
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
34
35
36
37
38
39
40
41
import setuptools
if __name__ == "__main__":
setuptools.setup()
# def read_requirements(file):
# with open(file) as f:
# return f.read().splitlines()
# def read_file(file):
# with open(file) as f:
# return f.read()
# version = read_file("VERSION")
# requirements = read_requirements("requirements.txt")
# setup(
# name="exfor_dictionary",
# description="EXFOR Dictionary Parser",
# packages=find_packages(exclude=["test"]),
# package_data={"": ["*.json"]},
# py_modules=['exfor_dictionary', 'convert_dictionary'],
# version=version,
# author="Shin Okumura/IAEA-NDS",
# author_email="[email protected]",
# maintainer="IAEA-NDS",
# maintainer_email="[email protected]",
# license="MIT license",
# url="https://github.com/IAEA-NDS/exfor_dictionary",
# python_requires=">=3.8",
# install_requires=requirements,
# classifiers=[
# "Development Status :: 4 - Beta",
# "Programming Language :: Python :: 3",
# "Programming Language :: Python :: 3.8",
# "Programming Language :: Python :: 3.9",
# "Programming Language :: Python :: 3.10",
# ],
# )