-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 790 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 790 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
from setuptools import setup, find_packages
version = "0.1.0"
setup(
name="gmaildump",
version=version,
description="A tool to get the data from gmail and store it in database",
keywords="gmaildump",
install_requires=[
"pymongo==2.7.2",
"tornado==4.5.3",
"basescript==0.2.0",
"deeputil==0.2.5",
"gnsq==0.4.0",
],
package_dir={"gmaildump": "gmaildump"},
packages=find_packages("."),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 2.7",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
],
test_suite="test.suitefn",
entry_points={"console_scripts": ["gmaildump = gmaildump:main"]},
)