-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 819 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 819 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="Flask-DBPacemaker",
version="1.3.2",
author="Ron Chang",
author_email="ron.hsien.chang@gmail.com",
description="Hook db connection when you're running a long term sleep crawler assignment.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Ron-Chang/flask_dbpacemaker",
packages=find_packages(),
license='MIT',
python_requires='>=3.6',
exclude_package_date={'':['.gitignore', 'dev', 'test', 'setup.py']},
install_requires=[
'tzlocal==2.1',
'SQLAlchemy>=1.3.23',
'Flask>=1.0.2',
'Flask-APScheduler>=1.12.3',
'Flask-SQLAlchemy>=2.3.2',
]
)