-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 736 Bytes
/
setup.py
File metadata and controls
35 lines (30 loc) · 736 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
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
# coding: utf-8
"""
File Name: setup.py
Author: Wan Ji
E-mail: wanji@live.com
Created on: Sat Jul 1 15:34:35 2017 CST
Description:
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='implor',
version='0.4.2',
author='WAN Ji',
author_email='wanji@live.com',
scripts=[
'scripts/implor.py',
'scripts/run_implor',
],
url='http://github.com/wanji/implor',
license='LICENSE',
description='Image Explorer',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
install_requires=[
"flask",
],
)