-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.09 KB
/
setup.py
File metadata and controls
31 lines (29 loc) · 1.09 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
# -*- coding: utf-8 -*-
from setuptools import setup
from commitytools import VERSION
with open("README.md", 'r', encoding="utf-8") as f:
setup(
name='Commity',
version=VERSION,
packages=['test', 'commitytools'],
url="https://github.com/Cynnexis/Commity",
license='GNU AFFERO GENERAL PUBLIC LICENSE',
author='Valentin Berger',
author_email='',
description="Commity is a script that print the commits from a git branch in a user-friendly way using Markdown "
"format, inspired from default pull-requests templates in BitBucket.",
long_description=f.read(),
long_description_content_type="text/markdown",
python_requires='>=3.7',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Version Control :: Git",
])