-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.08 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
41
42
# See license.txt for license details.
# Copyright (c) 2020-2021, Chris Withers
import os
from setuptools import setup, find_packages
base_dir = os.path.dirname(__file__)
setup(
name='giterator',
version='0.2.0',
author='Chris Withers',
author_email='[email protected]',
license='MIT',
description=(
"Python tools for doing git things."
),
long_description=open('README.rst').read(),
url='https://github.com/simplistix/giterator',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(exclude=["tests"]),
zip_safe=False,
include_package_data=True,
extras_require=dict(
test=[
'pytest',
'pytest-cov',
'sybil',
'testfixtures',
],
build=['furo', 'sphinx', 'setuptools-git', 'twine', 'wheel']
),
entry_points={
'console_scripts': ['giterator=giterator.cli:main'],
}
)