forked from TeleTrackingTechnologies/forge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (33 loc) · 1.03 KB
/
setup.py
File metadata and controls
33 lines (33 loc) · 1.03 KB
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
""" Setup """
from setuptools import setup
setup(name='tele-forge',
version='1.0.0',
description='convenient cli with extendable collection of useful plugins',
url='https://github.com/TeleTrackingTechnologies/forge',
author='Brandon Horn, Kenneth Poling, Paul Verardi, Cameron Tucker, Clint Wadley',
author_email='opensource@teletracking.com',
packages=[
'forge',
'forge.config',
'forge._internal_plugins',
'forge._internal_plugins.manage_plugins',
'forge._internal_plugins.manage_plugins.manage_plugins_logic'
],
install_requires=[
'colorama',
'GitPython',
'pluginbase',
'requests',
'tabulate'
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
python_requires='>=3.7',
scripts=[
'bin/forge',
'bin/forge.bat'],
zip_safe=False
)