forked from josw123/dart-fss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.2 KB
/
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
36
37
38
39
40
from setuptools import setup, find_packages
from os import path
import versioneer
NAME = 'dart-fss'
INSTALL_REQUIRES = (
['numpy>=1.17.0', 'pandas', 'requests', 'lxml', 'html5lib', 'tqdm', 'beautifulsoup4',
'isodate', 'arelle', 'fake-useragent', 'openpyxl', 'halo']
)
with open(path.join('./', 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=NAME,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Web-scraping http://dart.fss.or.kr',
long_description=long_description,
long_description_content_type='text/markdown',
author='Sungwoo Jo',
author_email='[email protected]',
url='https://github.com/josw123/dart-fss',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only'
],
packages=find_packages(exclude=['dart_fss.tests']),
keywords=['fss', 'dart-fss', 'scrapping'],
python_requires='>=3.5',
package_data={},
install_requires=INSTALL_REQUIRES
)