-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (31 loc) · 1.17 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
import re
from setuptools import setup, find_packages
with open('dendrify/_version.py') as f_in:
m = re.match("__version__ = '([^']*)'", f_in.read())
_version = m.group(1)
with open('long-description.md', 'rt') as f_in:
long_description_md = f_in.read()
setup(
name='gitdendrify',
version=_version,
author='Ben North',
author_email='ben@redfrontdoor.org',
description='Transform git history between linear and structured forms',
long_description=long_description_md,
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Education',
],
python_requires='>=3.5',
url='https://github.com/bennorth/git-dendrify',
install_requires=['pygit2>=0.27.1', 'docopt'],
tests_require=['pytest', 'pytest-raisesregexp'],
packages=find_packages(),
entry_points={
'console_scripts': ['git-dendrify = dendrify.cli:main']},
)