CofeehousePy/resource_fetch/setup.py

23 lines
565 B
Python
Raw Normal View History

2020-12-26 23:41:16 +01:00
from setuptools import setup
with open("README.md", "r") as file:
long_description = file.read()
setup(
name='resource_fetch',
version='1.0.0',
description='Official CoffeeHouse API Wrapper for Python',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['resource_fetch'],
package_dir={
'resource_fetch': 'resource_fetch'
},
author='Intellivoid Technologies',
author_email='netkas@intellivoid.net',
install_requires=[
2020-12-28 05:26:18 +01:00
'packaging',
2020-12-27 00:07:58 +01:00
'pygithub'
2020-12-26 23:41:16 +01:00
]
)