-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
69 lines (55 loc) · 2.16 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
"""
Created on 30 Sep 2016
@author: jdrumgoole
"""
from setuptools import setup, find_packages
from mugalyser.version import __version__, __programName__
import os
pyfiles = [ f for f in os.listdir( "." ) if f.endswith( ".py" ) ]
setup(
name = __programName__,
version = __version__,
author = "Joe Drumgoole",
author_email = "[email protected]",
description = "MUGAlyser - a script to extract data from Meetup into a MongoDB database",
long_description =
'''
MUGLyser uses the meetup API to capture data into a MongoDB Database. The
app/mugalyser_main.py program reads this data via the API. You will need a meetup API
key to read this data. If you have a Meetup pro account you can use the --pro option.
You can analyse the data with apps/mug_analytics_main.py
''',
license = "AGPL",
keywords = "Meetup MUGS MongoDB API",
url = "https://github.com/jdrumgoole/MUGAlyser",
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU Affero General Public License v3',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2.7' ],
install_requires = [ "requests",
"dateutils",
"httplib2",
"google-api-python-client",
"pymongo",
"nose",
"pymongo_aggregation",
"mongodb_formatter"],
packages = find_packages(),
entry_points={
'console_scripts': [
'mugalyser=mugalyser.mugalyser_main:mugalyser',
'muganalytics=mugalyser.mug_analytics_main:main',
]
},
test_suite='nose.collector',
tests_require=['nose'],
)