-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (34 loc) · 1.13 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()
# from setuptools import setup, find_packages
# # print(find_packages())
# # --> return ['tabulated', 'parser', 'sql']
# 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="exforparser",
# description="EXFOR Parser",
# packages=find_packages(exclude=["test"]),
# py_modules=['exparser', 'tabulated'],
# version=version,
# author="Shin Okumura/IAEA-NDS",
# author_email="[email protected]",
# maintainer="IAEA-NDS",
# maintainer_email="[email protected]",
# license="GPL-2.0 license",
# url="https://github.com/[email protected]/exforparser",
# python_requires=">=3.8",
# install_requires=requirements,
# classifiers=[
# "Programming Language :: Python :: 3",
# "Operating System :: OS Independent",
# "License :: OSI Approved :: GPL-2.0 license",
# ],
# )