-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
50 lines (44 loc) · 1.43 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
# encoding: utf-8
import sys
from setuptools import setup, find_packages
__version__ = "0.0.26"
def readme():
with open("README.rst") as f:
return f.read()
setup(
name="vladiate",
version=__version__,
description="Vladiate is a strict validation tool for CSV files",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
],
keywords="validate CSV vampires",
author="Dustin Ingram",
author_email="[email protected]",
url="http://github.com/di/vladiate",
license="MIT",
long_description=readme(),
packages=find_packages(exclude=["examples", "tests"]),
include_package_data=True,
zip_safe=False,
install_requires=[],
extras_require={"s3": ["boto"]},
tests_require=["pretend", "pytest", 'black;python_version>="3.6"'],
entry_points={
"console_scripts": [
"vladiate = vladiate.main:main",
]
},
)