-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 856 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 856 Bytes
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
from setuptools import setup, find_packages
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name = 'qfipy',
version = '1.0.0',
long_description = long_description,
author = 'Apostolos Kouzoukos',
author_email = 'kouzoukos97@gmail.com',
url = 'https://github.com/kouzapo/QFiPy',
packages = ['qfipy'],
package_dir = {'qfipy': 'qfipy'},
package_data = {'qfipy': ['data/symbols_files/*.dat']},
classifiers=[
'Programming Language :: Python',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires = ['numpy', 'scipy', 'pandas', 'pandas-datareader']
)