-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 883 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
from setuptools import setup, find_packages
INSTALL_REQUIRES = []
for line in open('requirements.txt').readlines():
requirement = line.strip()
if requirement.startswith(('#', '-')):
continue
INSTALL_REQUIRES.append(requirement)
setup(
name = 'pollinator',
version = open('pollinator/VERSION').read().strip(),
author = 'Amanda Crawford',
author_email = '[email protected]',
license='MIT',
description='An opinionated airflow data engineering platform generator',
long_description=open('README.md').read().strip(),
long_description_content_type='text/markdown',
url="https://github.com/brighthive/pollinator",
packages = find_packages(),
include_package_data=True,
install_requires=INSTALL_REQUIRES,
entry_points = {
'console_scripts': [
'pollinator = pollinator.cli:cli'
]
})