forked from stettberger/git-external
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (20 loc) · 740 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (20 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python3
from setuptools import setup
setup(name='git-external',
version="0.1",
description='Provide an SVN external mechanism for Git.',
author='Christian Dietrich',
author_email='stettberger@dokucode.de',
url='https://github.com/stettberger/git-external',
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Software Development",
"Topic :: Software Development :: Version Control"
],
zip_safe=False,
scripts=['bin/git-external'],
python_requires='>=3.6'
)