-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.06 KB
/
setup.py
File metadata and controls
38 lines (34 loc) · 1.06 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
34
35
36
37
38
""" Setup """
from setuptools import setup
with open('requirements.txt') as f:
required_dependencies = f.read().splitlines()
setup(
name='tele-forge',
version="2.0.1",
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, Morgan Szafranski'),
author_email='opensource@teletracking.com',
license='MIT',
packages=[
'forge'
],
install_requires=required_dependencies,
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
python_requires='>=3.7',
zip_safe=True,
include_package_data=True,
entry_points={
'console_scripts': [
'forge = forge:main'
]
}
)