-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.17 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# setup.py
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="simpleshare",
version="v1.3",
description="A local file sharing utility written in Python. Uses \
multicast UDP to share the list of files, and TCP to transfer the\
files themselves.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/ssebs/simpleshare",
author="Sebastian Safari",
author_email="contact@ssebs.com",
license="MIT",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.6.0",
install_requires=["pyttk"],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"simpleshare = simpleshare.__main__:main",
],
"gui_scripts": [
"simpleshare = simpleshare.__main__:main",
]
}
)