-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (48 loc) · 1.64 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
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
from MISOReports import __version__
setup(
name='MISOReports',
version=__version__,
description='A comprehensive Python library for downloading Midcontinent Independent System Operator (MISO) public reports into pandas dataframes.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Brian Wei Hao Ma, Ryan B. Green, William Sun',
author_email='[email protected]',
license='MIT',
url='https://github.com/BrianWeiHaoMa/MISOReports',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
keywords=[
'python',
'data-science',
'scraper',
'download',
'pandas',
'reports',
'electricity',
'tables',
'data-tables',
'data-scraping',
'miso',
'energy-markets',
'electricity-markets',
],
python_requires='>=3.10',
packages=find_packages(exclude=("tests", "scripts", "_scripts")),
install_requires=[
'pandas>=2.2.0, <3.0.0',
'requests>=2.32.0, <3.0.0',
],
)