-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
44 lines (39 loc) · 1.4 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import io
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
# Import the README and use it as the long-description.
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
setup(
name='eiapy',
version='0.1.6',
description='A simple wrapper for the U.S. Energy Information Administration (EIA) API.',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
py_modules=['eiapy'],
python_requires='>=3',
setup_requires=['wheel'],
install_requires=['requests'],
author='Chris Brown',
author_email='[email protected]',
keywords='EIA Data API Energy',
url='https://github.com/systemcatch/eiapy',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)