forked from fitnr/addfips
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (47 loc) · 1.42 KB
/
setup.py
File metadata and controls
52 lines (47 loc) · 1.42 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This file is part of addfips.
# http://github.com/fitnr/addfips
# Licensed under the GPL-v3.0 license:
# http://opensource.org/licenses/GPL-3.0
# Copyright (c) 2016, Neil Freeman <contact@fakeisthenewreal.org>
from setuptools import setup
try:
readme = open('README.rst').read()
except:
readme = ''
setup(
name='addfips',
version='0.2.2',
description='Add county FIPS to tabular data',
long_description=readme,
keywords='csv census usa data',
author='Neil Freeman',
author_email='contact@fakeisthenewreal.org',
url='http://github.com/fitnr/addfips',
license='GPL-3.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
],
packages=['addfips'],
include_package_data=True,
package_data={
'addfips': ['data/*.csv']
},
entry_points={
'console_scripts': [
'addfips=addfips.cli:main',
],
},
zip_safe=False,
test_suite='tests'
)