forked from eabglobal/juniper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.76 KB
/
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
41
42
43
44
45
46
47
48
49
import io
import re
from collections import OrderedDict
from setuptools import setup, find_packages
with io.open('README.rst', 'rt', encoding='utf8') as f:
readme = f.read()
# Make sure that the version of the package always matches the version of the
# tool. The version of the __init__.py is updated with the make release command.
with io.open('juniper/__init__.py', 'rt', encoding='utf8') as f:
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
with open('requirements/requirements.in', 'r') as fd:
install_requires=fd.readlines()
setup(
name="juniper-aidentified",
version=version,
author='Aidentified LLC',
author_email='[email protected]',
description="Tool to streamline the build of python lambda functions. (fork of juniper)",
long_description=readme,
long_description_content_type="text/x-rst",
project_urls=OrderedDict((
('Code', 'https://github.com/dgilmanAIDENTIFIED/juniper'),
)),
license='Apache Software License',
packages=find_packages(exclude=("tests",)),
include_package_data=True,
entry_points={
'console_scripts': ['juni=juniper.cli:main'],
},
python_requires='>=3.9',
test_suite="tests",
install_requires=install_requires,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Build Tools',
])