-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (38 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
33
34
35
36
37
38
39
40
#!/usr/bin/env python
'''
Assume this repo will be installed in dev mode. Not quite ready yet for packaging.
Use:
pip instll -e .
'''
import setuptools
setuptools.setup(
name='conda_build_dojo',
version='0.1.0',
description="Conda-Build Dojo guides you through debugging scenarios encountered during package building.",
url='https://github.com/anaconda-distribution/conda_build_dojo',
author="Paul Yim",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD-3-clause License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=setuptools.find_packages(),
install_requires=[
'conda',
'conda-build',
'colorama',
'gitpython',
'pandas',
'pyyaml',
'tabulate',
],
entry_points={
'console_scripts': [
'dojo = dojo.__main__:main',
]
},
license="BSD 3-clause",
)