This repository has been archived by the owner on Jun 1, 2024. It is now read-only.
forked from kelhad00/trading_simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (50 loc) · 1.97 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
45
46
47
48
49
50
51
52
import io
from setuptools import setup, find_packages
setup(
# Check https://setuptools.pypa.io/en/latest/references/keywords.html for a full list of keywords
name = "tradesim",
version = "0.2.2",
description = (
"A stock market site simulator for collecting data on stocks carried out by the trader."
),
long_description=io.open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Gatien VILAIN, Capucine FOUILLARD, Paul HERBEAU, Kevin EL HADDAD",
url = "https://github.com/kelhad00/trading_simulator",
download_url = "https://github.com/kelhad00/trading_simulator/releases",
packages=find_packages(),
scripts=["bin/tradesim"], # "Provide command-line scripts for the user to run"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Dash",
"Framework :: Flask",
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
'License :: OSI Approved :: Apache Software License',
"Topic :: Scientific/Engineering",
],
license='Apache 2.0',
license_files = ("LICENSE",),
package_data={"tradesim": ["assets/*", "Setup/*.ipynb"]},
install_requires=[
'dash ==2.10.2',
'pandas ==2.0.2',
],
extras_require={
'extra': [
'yahooquery ==2.3.1',
'notebook'
],
},
python_requires="==3.10.*",
project_urls={
"Source": "https://github.com/kelhad00/trading_simulator",
"Bug Tracker": "https://github.com/kelhad00/trading_simulator/issues",
},
)