-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (30 loc) · 920 Bytes
/
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from os.path import dirname, join
from setuptools import find_packages, setup
__version__= "0.0.3"
def read_file(file):
with open(file, "rt") as f:
return f.read()
setup(
name='libfinance',
version=__version__,
description='libfinance',
packages=find_packages(exclude=[]),
author='',
author_email='',
license='Apache License v2',
package_data={'': ['*.*']},
url='',
install_requires=["dill>=0.3.8", "thriftpy2>=0.3.9","pandas==1.3.4"],
zip_safe=False,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)