-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
43 lines (41 loc) · 1.15 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
41
42
43
#! /usr/bin/env python3
# -*- encoding: utf-8 -*-
"""
setup.py
setup script
"""
__author__ = 'Yoshiya Ito <myon53@gmail.com>'
__version__ = '1.0.0'
__date__ = '2018-04-24'
from setuptools import setup
#with open('README.md', 'rt', encoding='utf8') as f:
# readme = f.read()
setup(
name='Hermetica',
version='1.0.0',
description='scaffold command line interface for Flask application',
#long_description=readme,
author='Yoshiya Ito',
author_email='myon53@gmail.com',
url='https://github.com/yoshiya0503/Flask-Best-Practices.git',
license='MIT',
platforms='any',
packages=['hermetica', 'hermetica.scaffold'],
install_requires=[
'click>=5.1',
'Inflector>=2.0',
],
classifiers=[
'Environment :: Web Environment',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
entry_points='''
[console_scripts]
hermetica=hermetica.cli:main
'''
)