-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.11 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.11 KB
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
from setuptools import setup
from pysolardb import sample
with open("README.md", "r") as readme:
long_description = readme.read()
setup(
name='pysolardb',
version=sample.__version__,
description='Package used to access the LE2P solar database SolarDB',
url='https://github.com/LE2P/pysolardb',
author=sample.__author__,
author_email='[email protected]',
license='MIT',
include_package_data=True,
packages=['pysolardb', 'pysolardb.sample'],
install_requires=[
'outdated>=0.2.1',
'pandas>=1.4.2',
'requests>=2.25.1',
'urllib3>=1.26.9'
],
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering'
]
)