forked from marreta27/jsm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (31 loc) · 985 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
import os
from setuptools import setup, find_packages
import codecs
VERSION = "0.19"
README = os.path.join(os.path.dirname(__file__),'PKG-INFO')
long_description = codecs.open(README, "r", encoding="utf-8").read() + "\n"
setup(name='jsm',
version=VERSION,
description="Get the japanese stock market data",
long_description=long_description,
install_requires=[
'beautifulsoup4',
'html5lib',
"requests",
"six"
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
keywords='japanese stock market data investment',
author='utahta',
author_email='[email protected]',
url='https://github.com/utahta/jsm',
license='MIT',
packages=find_packages(),
include_package_data=True,
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)