generated from remorses/python-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (25 loc) · 927 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
from setuptools import setup
NAME = 'cloud-run-compose'
setup(
name=NAME,
# [bump]
version='1.0.6',
description=NAME,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Tommaso De Rossi',
author_email='[email protected]',
license='Apache Software License 2.0',
url=f'https://github.com/remorses/{NAME}',
keywords=['TODO'],
install_requires=[x for x in open('./requirements.txt').read().strip().split('\n') if x.strip()],
package_data={'': ['*.yaml', '*.json', '*.yml', 'VERSION', 'README.md', 'requirements.txt']},
classifiers=[
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
scripts=['bin/cloud-run-compose'],
packages=[NAME.replace('-', '_')],
)