-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 966 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 966 Bytes
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
import setuptools
import subprocess
from micsync.version import __version__
from micsync.version import _program_name
with open("README.md", "r") as fh:
readme_file = fh.read()
setuptools.setup(
name = _program_name,
version = __version__,
author = "micdmy",
author_email = "micdmy2@gmail.com",
description = "Local data synchronization tool based on rsync.",
long_description = readme_file,
long_description_content_type = "text/markdown",
url = "https://github.com/micdmy/micsync/",
packages = setuptools.find_packages(),
scripts = ["micsync/micsync"],
python_requires = ">=3.7",
setup_requires = [
"wheel",
"twine"
],
license = "GPLv3",
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux"
],
)