-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (33 loc) · 1.21 KB
/
setup.py
File metadata and controls
39 lines (33 loc) · 1.21 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
37
38
39
from setuptools import setup
import pathlib
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
readme = open('README.md', 'r')
README_TEXT = readme.read()
readme.close()
read_required = open('requirements.txt', 'r')
REQUIRED = read_required.read()
read_required.close()
my_version = "0.9.4"
setup(name='binpan',
version=my_version,
url='https://github.com/nand0san/binpan_studio',
license='MIT',
install_requires=REQUIRED,
python_requires='>=3.12.0',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
author='Fernando Alfonso',
author_email='hancaidolosdos@hotmail.com',
description='Binance API wrapper with backtesting tools.',
long_description=README_TEXT,
long_description_content_type="text/markdown",
package_dir={"": "."},
packages=["binpan", "binpan.core", "binpan.api", "binpan.analysis", "binpan.plotting", "binpan.storage"]
)