2020-06-05 18:00:53 +02:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
with open("README.md") as fp:
|
|
|
|
|
long_description = fp.read()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
|
name="once",
|
2020-06-11 17:10:10 +02:00
|
|
|
description="A one-time file sharing personal service, running serverless on AWS",
|
2020-06-11 15:50:51 +02:00
|
|
|
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",
|
|
|
|
|
|
2020-06-11 15:50:51 +02:00
|
|
|
python_requires=">=3.6",
|
2020-06-05 18:00:53 +02:00
|
|
|
install_requires=[
|
2020-06-11 15:50:51 +02:00
|
|
|
"click",
|
|
|
|
|
"pygments",
|
|
|
|
|
"requests"
|
2020-06-05 18:00:53 +02:00
|
|
|
],
|
|
|
|
|
|
2020-06-11 15:50:51 +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",
|
|
|
|
|
|
2020-06-11 17:10:10 +02:00
|
|
|
"License :: OSI Approved :: MIT License",
|
2020-06-05 18:00:53 +02:00
|
|
|
|
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
|
|
2020-06-11 15:50:51 +02:00
|
|
|
"Topic :: File Sharing",
|
2020-06-05 18:00:53 +02:00
|
|
|
"Topic :: Utilities",
|
|
|
|
|
|
|
|
|
|
"Typing :: Typed",
|
|
|
|
|
],
|
|
|
|
|
)
|