-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
28 lines (25 loc) · 851 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
from setuptools import setup, find_packages
import os
REQ_FILE = 'requirements.txt'
VERSION = '0.2.15'
def get_requires():
thisdir = os.path.dirname(__file__)
reqpath = os.path.join(thisdir, REQ_FILE)
return [line.rstrip('\n') for line in open(reqpath)]
setup(name='simple_bank_korea',
version=VERSION,
url='https://github.com/beomi/simple_bank_korea',
license='MIT',
author='Junbum Lee',
author_email='jun@beomi.net',
description='Crawling Korea bank transactions',
packages=find_packages(),
long_description=open('README.md', 'r', encoding="utf-8").read(),
long_description_content_type="text/markdown",
zip_safe=False,
install_requires=get_requires(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
],
)