-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
34 lines (29 loc) · 986 Bytes
/
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
import os.path
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name='fec2json',
version='0.0.1',
author='Rachel Shorey',
author_email='[email protected]',
url='https://github.com/newsdev/fec2json',
description='Python client for turning a FEC filing csv file into JSON.',
long_description="",
packages=['utils'],
entry_points={
'console_scripts': (
'fec2json = process_filing:main',
),
},
license="Apache License 2.0",
keywords='FEC data parsing json elections finance campaign',
install_requires=['ujson'],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules']
)