-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.14 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
42
from pathlib import Path
from setuptools import setup, find_packages
NAME = "TOFU"
DESCRIPTION = "playground for onsite analysis"
URL = "https://github.com/elenya-grant/TOFU.git"
EMAIL = "elenya.grant@nrel.gov"
AUTHOR = "NREL"
REQUIRES_PYTHON = ">=3.8.0"
VERSION = 1.0
ROOT = Path(__file__).parent
base_path = Path("tofu")
# package_data_files = [*ROOT.glob("tools/2-6 digit_2022_Codes.xlsx")]
# package_data_files = [
# *ROOT.glob("./data/tl_2023_us_state/*"),
# *ROOT.glob("./data/tl_2023_us_uac20/*"),
# *ROOT.glob("./data/tl_2023_us_state/*")
# ]
package_data = {
"tofu": [],
}
setup(
name=NAME,
version=VERSION,
url=URL,
description=DESCRIPTION,
# long_description=(base_path.parent / "RELEASE.md").read_text(),
# long_description_content_type='text/markdown',
license='Apache Version 2.0',
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
packages=find_packages(),
# package_data=package_data,
include_package_data=True,
install_requires=(base_path.parent / "requirements.txt").read_text().splitlines(),
tests_require=['pytest', 'pytest-subtests', 'responses']
)