forked from DrSkippy/Gnacs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 764 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (18 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
GNACS_VERSION_NUMBER = "0.7.6"
if '__main__' == __name__:
setup(
name='gnacs',
version=GNACS_VERSION_NUMBER,
author='Scott Hendrickson, Josh Montague, Jinsub Hong, Jeff Kolb, Brian Lehman',
author_email='scott@drskippy.net',
packages=['acscsv'],
scripts=['gnacs.py'],
url='https://github.com/DrSkippy27/Gnacs',
download_url='https://github.com/DrSkippy27/Gnacs/tags/%s'%(GNACS_VERSION_NUMBER),
license='LICENSE.txt',
description='Gnip normalized activity JSON to csv parser (Disqus Comments, Wordpress, Twitter, Tumblr, Foursquare, StockTwits)',
install_requires=[
"ujson >= 1.2",
]
)