forked from umihico/pythonista-chromeless
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 645 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("server/requirements.txt", "r", encoding="utf-8") as fh:
requirements = fh.read()
setup(
name = 'copy-gdoc',
version = '0.0.1',
py_modules = ['server', 'cli', 'client'],
packages = find_packages(),
install_requires = [requirements],
python_requires='>=3.10',
classifiers=[
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
entry_points = '''
[console_scripts]
copy-gdoc=cli.copy_gdoc:main
'''
)