-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 825 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name="rw-devtools",
version=open("VERSION").read().strip(),
packages=["RW"], # Explicitly list the `RW` package
package_dir={"RW": "dev_facade/RW"}, # Map `RW` to its directory
license="Apache License 2.0",
description="A set of RunWhen Developer keywords and python libraries for local development",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="RunWhen",
author_email="info@runwhen.com",
url="https://github.com/runwhen-contrib/codecollection-devtools",
install_requires=open("requirements.txt").read().splitlines(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
],
)