FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
QuantSoftwareToolkit/setup.py at master · QuantSoftware/QuantSoftwareToolkit · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
QuantSoftware
/
QuantSoftwareToolkit
Public
Notifications
You must be signed in to change notification settings
Fork
216
Star
480
Code
Issues
21
Pull requests
3
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
QuantSoftwareToolkit
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
41 lines (40 loc) · 1.31 KB
Breadcrumbs
QuantSoftwareToolkit
/
setup.py
Copy path
File metadata and controls
41 lines (40 loc) · 1.31 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
'''Author: Sourabh Bajaj'''
import
ez_setup
ez_setup
.
use_setuptools
()
from
setuptools
import
setup
,
find_packages
setup
(
name
=
'QSTK'
,
version
=
'0.2.8'
,
author
=
'Sourabh Bajaj'
,
packages
=
find_packages
(),
namespace_packages
=
[
'QSTK'
],
include_package_data
=
True
,
long_description
=
open
(
'README.md'
).
read
(),
author_email
=
'sourabh@sourabhbajaj.com'
,
url
=
'https://github.com/tucker777/QuantSoftwareToolkit'
,
license
=
open
(
'LICENSE.txt'
).
read
(),
description
=
'QuantSoftware Toolkit'
,
install_requires
=
[
"numpy >= 1.6.1"
,
"scipy >= 0.9.0"
,
"matplotlib >= 1.1.0"
,
"pandas >= 0.7.3"
,
"python-dateutil == 1.5"
,
"scikit-learn >= 0.11"
,
],
classifiers
=
[
'Development Status :: 5 - Production/Stable'
,
'Environment :: Console'
,
'Intended Audience :: Developers'
,
'Intended Audience :: Education'
,
'Intended Audience :: Science/Research'
,
'Intended Audience :: Financial and Insurance Industry'
,
'License :: OSI Approved :: BSD License'
,
'Natural Language :: English'
,
'Operating System :: MacOS :: MacOS X'
,
'Operating System :: Microsoft :: Windows'
,
'Operating System :: POSIX'
,
'Programming Language :: Python :: 2.7'
,
'Topic :: Utilities'
,
],
)
Back
|
FazBrowse Home
|
New Git URL