This repository was archived by the owner on Dec 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (52 loc) · 1.2 KB
/
setup.py
File metadata and controls
56 lines (52 loc) · 1.2 KB
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
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
"""
setup.py
~~~~~~~~
:copyright: (c) 2010 by Dan Jacob.
:license: BSD, see LICENSE for more details.
"""
"""
newsmeme
--------
"""
from setuptools import setup
setup(
name='newsmeme',
version='0.1',
url='<enter URL here>',
license='BSD',
author='Dan Jacob',
author_email='your-email-here@example.com',
description='<enter short description here>',
long_description=__doc__,
packages=['newsmeme'],
zip_safe=False,
platforms='any',
install_requires=[
'Flask',
'Flask-Cache',
'Flask-SQLAlchemy',
'Flask-Principal',
'Flask-WTF',
'Flask-Mail',
'Flask-Testing',
'Flask-Script',
'Flask-OpenID',
'Flask-Babel',
'Flask-Themes',
'sqlalchemy',
'markdown',
'feedparser',
'blinker',
'nose',
],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)