forked from Neosperience/backpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 788 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
from glob import glob
import os
from setuptools import setup
name = "panorama-backpack"
here = os.path.abspath(os.path.dirname(__file__))
# get the dependencies and installs
with open('requirements.txt', 'r') as f:
requires = [x.strip() for x in f if x.strip()]
setup(
name=name,
version="0.1",
description="Tools for AWS Panorama development",
python_requires=">=3.7",
packages=['backpack'],
package_dir={'backpack': 'backpack'},
py_modules=[os.path.splitext(os.path.basename(path))[0] for path in glob('src/*.py')],
include_package_data=True,
install_requires=requires,
author="Neosperience",
entry_points={},
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3.8",
],
extras_require={
},
)