-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
52 lines (45 loc) · 1.5 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 setuptools
from shutil import copyfile
# import os
copyfile('readme.md', 'structjour/readme.md')
with open('structjour/readme.md', 'r') as fh:
long_description = fh.read()
thePackages = setuptools.find_packages(exclude=['test'])
setuptools.setup(
name='structjour',
version='0.9.95-Alpha.001',
author='Mike Petersen',
author_email='pentsok@zerosubstance.org',
description='A structured daily journal for day traders.',
license='GPL',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/MikePia/structjour',
packages=thePackages,
keywords='DayTrading journal',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Other Audience',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Microsoft :: Windows'
],
install_requires=[
'requests==2.25.1',
'Pillow==8.1.1',
'numpy==1.20.1',
'pandas==1.2.2',
'matplotlib==3.3.4',
'SQLAlchemy==1.3.23',
'PyQtWebEngine==5.15.2',
'PyQt5==5.15.2',
'PyQt5-sip==12.8.1',
'openpyxl==3.0.6',
'beautifulsoup4==4.9.3',
'mplfinance'
],
include_package_data=True,
# data_files=[('', ['Disciplined.xlsx']),('',['readme.md'])],
entry_points={'console_scripts': 'structjour=structjour.view.runtrade:main'},
python_requires='>=3.6'
)