forked from nanne-aben/strictly_typed_pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (30 loc) · 1.12 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
from setuptools import find_packages, setup
def get_requirements():
with open("requirements.txt") as f:
return f.read().splitlines()
def get_long_description():
with open("README.rst", encoding="utf-8") as f:
return f.read()
setup(
name="strictly_typed_pandas",
url="https://github.com/nanne-aben/strictly_typed_pandas",
license="MIT",
author="Nanne Aben",
author_email="[email protected]",
description="Static type checking of pandas DataFrames",
keywords="typing type checking pandas mypy linting",
long_description=get_long_description(),
long_description_content_type="text/x-rst",
packages=find_packages(include=["strictly_typed_pandas", "strictly_typed_pandas.*"]),
install_requires=get_requirements(),
python_requires=">=3.8.0",
classifiers=["Typing :: Typed"],
setuptools_git_versioning={"enabled": True},
setup_requires=["setuptools-git-versioning"],
package_data={"strictly_typed_pandas": ["py.typed"]},
entry_points={
"pytest11": [
"strictly_typed_pandas = strictly_typed_pandas.pytest_plugin",
],
},
)