-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.common.py
33 lines (27 loc) · 981 Bytes
/
setup.common.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
"""Setup that only installs bugswarm.common and its dependencies. Used
to generate the bugswarm-common package on PyPI."""
from datetime import datetime
from setuptools import setup, find_packages
today = datetime.utcnow()
version = f'{today.year}.{today.month:02}.{today.day:02}'
setup(
name='bugswarm-common',
version=version,
url='https://github.com/BugSwarm/bugswarm',
author='BugSwarm',
author_email='[email protected]',
description='Library of modules used throughout the BugSwarm toolset',
long_description='Library of modules used throughout the BugSwarm toolset',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
],
zip_safe=False,
packages=find_packages(include=['bugswarm.common*']),
install_requires=[
'requests>=2.20.0,<=2.31',
'CacheControl==0.12.3',
'requests-cache==0.4.13',
'charset-normalizer>=2,<4',
],
)