-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (32 loc) · 1.11 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
import setuptools
from ecocal import (__version__,
__author__,
__package_name__)
with open("README.md", "r") as f:
long_description = f.read()
PYTHON_MODULE_NAME: str = __package_name__
REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()]
setuptools.setup(
name=PYTHON_MODULE_NAME,
py_modules=[PYTHON_MODULE_NAME],
version=__version__,
author=__author__,
author_email="[email protected]",
license="MIT",
url=f"https://github.com/lcsrodriguez/{PYTHON_MODULE_NAME}",
description="Worldwide economic calendar Python package (details, estimates, market news, ...)",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={'': '.'},
extras_require={
"interactive": ["notebook==7.0.6"],
},
install_requires=REQUIREMENTS, # [],
python_requires='>=3.10',
)