Files
once/setup.py

49 lines
1.1 KiB
Python
Raw Normal View History

2020-06-05 18:00:53 +02:00
import setuptools
with open("README.md") as fp:
long_description = fp.read()
setuptools.setup(
name="once",
description="An one-time file sharing personal service, running serverless on AWS",
version="0.1.0",
url="https://github.com/domtes/once",
author="Domenico Testa",
author_email="domenico.testa@gmail.com",
2020-06-05 18:00:53 +02:00
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.6",
2020-06-05 18:00:53 +02:00
install_requires=[
"click",
"pygments",
"requests"
2020-06-05 18:00:53 +02:00
],
package_dir={'': 'client'},
py_modules=['once'],
entry_points={
'console_scripts': ['once=once:share']
},
2020-06-05 18:00:53 +02:00
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: File Sharing",
2020-06-05 18:00:53 +02:00
"Topic :: Utilities",
"Typing :: Typed",
],
)