forked from deppen8/pandas-vet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (35 loc) · 1.25 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
import setuptools
requires = ["flake8 > 3.0.0", "attrs"]
tests_requires = ["pytest > 4.0.0"]
flake8_entry_point = "flake8.extension"
with open("README.md", "rt") as f:
long_description = f.read()
version = {}
with open("pandas_vet/version.py") as fp:
exec(fp.read(), version)
setuptools.setup(
name="pandas-vet",
license="MIT",
version=version["__version__"],
description="A flake8 plugin to lint pandas in an opinionated way",
author="Jacob Deppen",
author_email="[email protected]",
url="https://github.com/deppen8/pandas-vet",
packages=["pandas_vet"],
install_requires=requires,
tests_require=tests_requires,
entry_points={flake8_entry_point: ["PD = pandas_vet:VetPlugin"]},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Flake8",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
],
long_description=long_description,
long_description_content_type="text/markdown",
)