-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 935 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
from setuptools import setup, find_packages
install_requires = ["pandas >=1.4.3", "lxml>=4.9.0","requests"]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
# these rarely change
name="optshare",
description='Python package for option, index, and yield data',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.9',
],
keywords='derivatives, finance',
license='Free for non-commercial use',
author='Yu Lu',
author_email='[email protected]',
url='https://yulu0131.github.io/',
# these may change frequently
package_dir={'': 'src'},
packages=find_packages(where='src'),
python_requires='>=3.9',
install_requires=install_requires,
package_data={'optshare': ['option/option_info.csv']},
)