23 lines
No EOL
699 B
Python
23 lines
No EOL
699 B
Python
import setuptools
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name='trustcafeapiwrapper',
|
|
version='0.1.0.1',
|
|
author='Simon Little',
|
|
author_email='simon.little@wikitribune.com',
|
|
description='A Python wrapper for the TrustCafe API',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url='https://gitlab.com/trustcafe/trustcafe-api-wrapper/',
|
|
project_urls = {
|
|
"Bug Tracker": "https://gitlab.com/trustcafe/trustcafe-api-wrapper/-/issues"
|
|
},
|
|
license='MIT',
|
|
packages=find_packages(),
|
|
install_requires=[],
|
|
) |