-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
executable file
·46 lines (44 loc) · 1021 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
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst', encoding='utf8') as f:
readme = f.read()
setup(
name='sopy',
version='1.8',
url='http://sopython.com/',
author='David Lord',
author_email='[email protected]',
license='BSD',
description='The productive programming cabbage website.',
long_description=readme,
zip_safe=False,
python_requires='>=3.4',
include_package_data=True,
packages=find_packages(),
install_requires=[
'Flask',
'Flask-Alembic',
'Flask-Babel',
'Flask-Mail',
'Flask-SQLAlchemy',
'Flask-WTF',
'beautifulsoup4',
'hoep',
'inflection',
'lxml',
'psycopg2',
'Pygments',
'requests',
],
extras_require={
'dev': [
'Flask-Shell-IPython',
'Sphinx',
]
},
entry_points = {
'console_scripts': [
'sopy = sopy.cli:main',
],
},
)