forked from bslatkin/dpxdt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (47 loc) · 1.36 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
44
45
46
47
48
from setuptools import setup, find_packages
setup(name='dpxdt',
version='0.1.6',
description='Screenshot diff tool',
author='Brett Slatkin',
author_email='[email protected]',
url='https://github.com/bslatkin/dpxdt',
entry_points={
'console_scripts': [
'dpxdt = dpxdt.tools.local_pdiff:run',
'dpxdt_server = dpxdt.tools.run_server:run',
],
},
packages=find_packages(exclude=['tests*']),
install_requires=[ # Keep in sync with requirements.txt
'Flask',
'Flask-Cache',
'Flask-Login',
'Flask-Mail',
'Flask-SQLAlchemy',
'Flask-WTF',
'Jinja2',
'Mako',
'MarkupSafe',
'PyYAML',
'SQLAlchemy',
'WTForms',
'Werkzeug',
'blinker',
'itsdangerous',
'poster',
'pyimgur',
'python-gflags',
'requests',
'wsgiref',
],
include_package_data=True,
classifiers=[
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Flask',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Version Control'
],
)