-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (29 loc) · 881 Bytes
/
setup.py
File metadata and controls
29 lines (29 loc) · 881 Bytes
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
from distutils.core import setup
setup(
name = 'git_reqs',
packages = ['git_reqs'],
version = '0.3.2',
description = 'Simple requirement management system for developers based yaml, networkx and git',
author = 'Jonas Josefsson',
author_email = 'Jonas.josefsson@niradynamics.se',
url = 'https://github.com/niradynamics/git-reqs',
download_url = 'https://github.com/niradynamics/git-reqs/archive/0.1.tar.gz',
keywords = ['Requirements', 'gitreqs'],
install_requires=[
'junitparser',
'networkx',
'numpy',
'pydot',
'openpyxl',
'PyYAML',
'GitPython',
'bokeh'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Programming Language :: Python :: 3.6',
],
scripts = ['git-reqs'],
)