-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
32 lines (29 loc) · 1.03 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
import setuptools
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('README.md') as fh:
long_description = fh.read()
setuptools.setup(
name="pollination-alias",
use_scm_version=True,
setup_requires=['setuptools_scm'],
author="Pollination",
author_email="[email protected]",
packages=setuptools.find_namespace_packages(
include=['pollination.*'], exclude=['tests']
),
install_requires=requirements,
description="Collection of alias inputs and outputs for Pollination recipes.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pollination/pollination-alias",
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
],
license="Apache-2.0 License",
zip_safe=False
)