Trying with setup
This commit is contained in:
parent
7bab0b0e27
commit
3a5db2bdba
1 changed files with 23 additions and 0 deletions
23
setup.py
Normal file
23
setup.py
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
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=[],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue