-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (26 loc) · 878 Bytes
/
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
from os import path
from setuptools import find_packages, setup
with open(
path.join(path.abspath(path.dirname(__file__)), "README.md"),
encoding="utf-8",
) as f:
long_description = f.read()
setup(
name="marshmallow-dataframe",
description="Marshmallow Schema generator for pandas dataframes",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache Software License",
url="https://github.com/facultyai/marshmallow-dataframe",
author="Faculty",
author_email="[email protected]",
packages=find_packages("src"),
package_dir={"": "src"},
use_scm_version={
"version_scheme": "post-release",
"local_scheme": "dirty-tag",
},
setup_requires=["setuptools_scm"],
install_requires=["marshmallow>=3.0.1", "pandas", "numpy"],
python_requires=">=3.6",
)