-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 972 Bytes
/
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
"""
Pypi setup file
"""
from setuptools import setup, find_packages
def load_readme():
"""Load README.md as string"""
with open('README.md', encoding='utf-8') as inp:
return inp.read()
setup(
name='git_dashboard',
version='0.1.15',
description="Git dashboard",
author="Jung Ko",
author_email="[email protected]",
license="GPL",
platforms=['any'],
packages=find_packages('src'),
package_dir={'': 'src'},
python_requires='>=3.6',
install_requires=[
"appdirs",
"GitPython",
"PySide6",
"PyYAML",
],
scripts=[
'bin/git-dashboard',
],
long_description=load_readme(),
long_description_content_type='text/markdown',
url='https://github.com/kojung/git-dashboard',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
],
)