-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (35 loc) · 1.1 KB
/
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
35
36
37
38
39
40
# Copyright (c) 2021 Benjamin Holt -- MIT License
from setuptools import setup
from allgit import _version
#####
#####
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="allgit",
version=_version,
description="""Powerful "git multiplexer" for easily working with many repositories""",
long_description=long_description, # FIXME: Do something better than just dumping the whole readme
long_description_content_type="text/markdown",
url="https://github.com/inventhouse/allgit",
author="Benjamin Holt",
license="MIT",
py_modules=["allgit"],
entry_points={
"console_scripts": [
"allgit=allgit:main",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: Unix",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Version Control",
],
keywords="git",
)
#####