-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1.02 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
import sys
from setuptools import setup, find_packages
setup(
name="namestand",
version="0.1.1",
description="Standardize any list of strings, but especially database/CSV column-names.",
long_description="",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.4"
],
keywords="rename columns standardize standardizing names",
author="Jeremy Singer-Vine",
author_email="[email protected]",
url="http://github.com/buzzfeednews/namestand/",
license="MIT",
packages=find_packages(exclude=["test",]),
namespace_packages=[],
include_package_data=False,
zip_safe=False,
tests_require=[
"nose",
],
test_suite="test",
)