-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 1023 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
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
setup(
name='miro_uploader', # Required
version='0.1', # Required
description='A simple tool to upload/push new files to provided git repo', # Optional
url='https://github.com/pypa/sampleproject', # Optional
author='smate82', # Optional
author_email='[email protected]', # Optional
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
],
# packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]), # Required
# If your package is a single module, use this instead of 'packages':
py_modules=['miro_uploader'],
python_requires='>=3.6, <4',
install_requires=['watchdog'], # Optional
entry_points={ # Optional
'console_scripts': [
'miro_uploader=miro_uploader:main',
],
}
)