-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 934 Bytes
/
setup.py
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
import setuptools
# pylint: disable=all
"""
python -m pip install --upgrade setuptools wheel twine
python setup.py sdist bdist_wheel
python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
python -m twine upload dist/*
"""
setuptools.setup(
name="sync-git-repos",
version="0.0.6",
author="Anton Gorinenko",
description="Command for syncing git repos",
long_description="See https://github.com/agorinenko/sync-git-repos",
keywords='python, utils, git',
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=['tests']),
classifiers=[
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
install_requires=[
],
extras_require={
'test': [
'pytest',
'pylint'
]
},
python_requires='>=3.8',
)