forked from timlegrand/giterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.32 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
#!/usr/bin/env python
from setuptools import setup
__version__ = ''
exec(open('src/giterm/_version.py').read())
with open("requirements.txt") as f:
required = [l for l in f.read().splitlines() if not l.startswith("#")]
with open('README.rst') as f:
long_description = f.read()
setup(
name='giterm',
version=__version__,
description='A terminal-based GUI client for Git',
long_description=long_description,
keywords='git, client, terminal, console',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console :: Curses',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Natural Language :: English',
'Topic :: Software Development :: Version Control',
],
author='Tim Legrand',
author_email='timlegrand.perso+dev@gmail.com',
url='https://github.com/timlegrand/giterm',
download_url='https://github.com/timlegrand/giterm',
license='BSD 2-Clause',
packages=['giterm'],
# package_dir={'giterm': 'src/giterm'},
package_dir={'': 'src'},
install_requires=required,
entry_points={'console_scripts': ['giterm = giterm.giterm:_main']},
)