-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (25 loc) · 930 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
32
33
34
from setuptools import find_packages, setup
import bigquery_views_manager
with open('requirements.txt', 'r') as f:
lines = f.readlines()
REQUIRED_PACKAGES = [line.split("==")[0].strip() for line in lines if line.strip()]
with open('README.md', 'r') as f:
long_description = f.read()
packages = find_packages()
setup(
name='bigquery-views-manager',
version=bigquery_views_manager.__version__,
author="eLife Sciences Publications, Ltd",
url="https://github.com/elifesciences/bigquery-views-manager",
install_requires=REQUIRED_PACKAGES,
packages=packages,
include_package_data=True,
description='BigQuery Views Manager',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)