-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 976 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
34
35
from setuptools import setup, find_packages
import os
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
VERSION_FILE = os.path.join(BASE_DIR, "steelflask", "version.py")
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='steelflask',
packages=find_packages(
exclude=('tests', 'tests.*')
),
include_package_data=True,
zip_safe=False,
use_scm_version=True,
keywords="flask scaffolding",
author="Chandrakanta Pal",
author_email="[email protected]",
description="Opinionated flask app scaffolding tool.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/chandrakantap/steelflask.git",
entry_points={
'console_scripts': [
'steelflask=steelflask.cli:steelflask'
],
},
setup_requires=['setuptools_scm'],
install_requires=[
'Click>=7.0',
'Mako>=1.1.2'
],
)