-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.08 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
33
34
35
36
#!/usr/bin/python3
from setuptools import setup, find_packages
with open("README.rst") as f:
long_description = f.read()
_VERSION = "0.5.0"
setup(
name="dev-pipeline-configure",
version=_VERSION,
package_dir={"": "lib"},
packages=find_packages("lib"),
install_requires=["dev-pipeline-core >= {}".format(_VERSION)],
entry_points={
"devpipeline.drivers": [
"configure = devpipeline_configure.configure:_CONFIGURE_COMMAND",
"reconfigure = devpipeline_configure.reconfigure:_RECONFIGURE_COMMAND",
]
},
author="Stephen Newell",
description="configure command for dev-pipeline",
long_description=long_description,
long_description_content_type="text/x-rst",
license="BSD-2",
url="https://github.com/dev-pipeline/dev-pipeline-configure",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development",
"Topic :: Utilities",
],
)