-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (30 loc) · 850 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
35
"""Package setup"""
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
requirements = [
"click",
"rez>=3"
]
setuptools.setup(
name="rez-quickstart-win",
version="0.2.0",
author="Thorsten Kaufmann",
description="Create initial rez packages for platform, os, arch and python",
packages=setuptools.find_packages(
exclude=["dist", "build", "*.egg-info", "tests"]
),
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=requirements,
entry_points={
"console_scripts": [
"rez-quickstart = rez_quickstart.cli:cli"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
)