forked from jericmac/pyasx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 772 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
import setuptools
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except ImportError:
long_description = open("README.md").read()
print("NOTE documentation not generated correctly, requires `pypandoc`")
setuptools.setup(
name='pyasx',
version='2.1.7',
description='Python library to pull data from ASX.com.au',
long_description=long_description,
url='http://github.com/zacscott/pyasx',
author='Zac Scott',
author_email='[email protected]',
license='MIT',
packages=setuptools.find_packages(
exclude=['tests',]
),
package_data={'pyasx': ['*.yml']},
python_requires='>=2.6',
install_requires=[
'requests',
'pyyaml',
'python-dateutil'
]
)