diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2020-08-18 20:21:46 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2020-08-18 20:21:46 +0000 |
commit | bddee63922e227c73fd1b4e5b50bbef56bb9a61f (patch) | |
tree | ee729b4d2250e2935a4922f120637a68ed91db17 /setup.py | |
parent | Initial commit. (diff) | |
download | gita-bddee63922e227c73fd1b4e5b50bbef56bb9a61f.tar.xz gita-bddee63922e227c73fd1b4e5b50bbef56bb9a61f.zip |
Adding upstream version 0.10.9.upstream/0.10.9
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | setup.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e6e3984 --- /dev/null +++ b/setup.py @@ -0,0 +1,38 @@ +from setuptools import setup + +long_description = None +with open('README.md', encoding='utf-8') as f: + long_description = f.read() + +setup( + name='gita', + packages=['gita'], + version='0.10.9', + license='MIT', + description='Manage multiple git repos', + long_description=long_description, + long_description_content_type='text/markdown', + url='https://github.com/nosarthur/gita', + platforms=['linux', 'osx', 'win32'], + keywords=['git', 'manage multiple repositories'], + author='Dong Zhou', + author_email='zhou.dong@gmail.com', + entry_points={'console_scripts': ['gita = gita.__main__:main']}, + install_requires=['pyyaml>=5.1'], + python_requires='~=3.6', + classifiers=[ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Operating System :: POSIX", + "Operating System :: MacOS :: MacOS X", + "Operating System :: Microsoft :: Windows", + "Topic :: Software Development :: Version Control :: Git", + "Topic :: Terminals", + "Topic :: Utilities", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + ], + include_package_data=True, +) |