-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
37 lines (31 loc) · 1.12 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
import setuptools
from oedi import __version__
with open("README.md") as fp:
long_description = fp.read()
def read_lines(filename):
with open(filename, "r") as f:
return f.readlines()
setuptools.setup(
name="oedi",
version=__version__,
description="The data access tool for constructing Open Energy Data Initiative (OEDI) data lake.",
long_description=long_description,
long_description_content_type="text/markdown",
author="NREL",
url="https://github.com/openEDI/open-data-access-tools",
packages=setuptools.find_packages(),
install_requires=read_lines("requirements.txt"),
python_requires=">=3.9",
classifiers=[
"Development Status :: 0 - Beta",
"Intended Audience :: Developers",
"License :: Apache License, Version 2.0.",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Topic :: Data Lake :: Open Energy Data Initiative",
"Topic :: Utilities"
],
entry_points={"console_scripts": ["oedi = oedi.cli.oedi:cli"]},
test_suite="tests"
)