-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.45 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
from setuptools import setup, find_packages
setup(
name='ETMeta',
version='1.0.4',
description='A meta Python API connection to the ETM by QI, with integration to Excel and EMA.',
url='https://github.com/thesethtruth/ETM-EMA-API',
author='Seth van Wieringen',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers :: Energy consultants',
'Topic :: Energy Transition :: Parametric Experiments :: API :: ETM',
# Pick your license as you wish (should match "license" above)
'License :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
],
packages=find_packages("src", exclude=("webdriver",)), # include all packages under src
package_dir={"": "src"}, # tell distutils packages are under src
package_data={
# And include any *.pkl files found in the "data" subdirectory
# of the "ETMeta" package, also:
"ETMeta": ["data/*.pkl"],
},
install_requires=[
'pandas',
'numpy',
'requests',
'beautifulsoup4', # @seth perhaps remove this dependency by fixing the get_ID with requests?
'openpyxl',
'seaborn', # @seth only used for static colorschemes, could be hard coded
],
python_requires='>=3.6',
)