-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 937 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 937 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
#!/usr/bin/env python
# -*- coding: utf8 -*-
import setuptools
setuptools.setup(
name="zeeguu",
version="0.1",
packages=setuptools.find_packages(),
include_package_data=True,
zip_safe=False,
author="Zeeguu Team",
author_email="me@mir.lu",
description="API for Zeeguu",
keywords="second language acquisition api",
dependency_links=[
"git+https://github.com/mircealungu/python-wordstats.git#egg=wordstats",
"git+https://github.com/mircealungu/watchmen.git#egg=watchmen"
],
install_requires=(
"flask>=0.10.1",
"Flask-SQLAlchemy",
"mysqlclient",
"regex",
"feedparser",
"wordstats",
"requests",
"newspaper3k",
"Faker",
"watchmen"
)
)