Permalink
Switch branches/tags
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
22 lines (19 sloc) 654 Bytes
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="AutoMunge_pkg",
version="1.72",
author="Nicholas Teague",
author_email="automunge@gmail.com",
description="A tool for automated data wrangling",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Automunge/AutoMunge",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)