forked from conda/conda-package-handling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 950 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
from setuptools import setup, find_packages
import versioneer
import sys
requirements = [
# package requirements go here
"six",
# "python-libarchive-c"
]
if sys.version_info.major == 2:
requirements.append('futures')
setup(
name='conda-package-handling',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Create and extract conda packages of various formats",
author="Anaconda, Inc.",
author_email='conda@anaconda.com',
url='https://github.com/conda/conda-package-handling',
packages=find_packages("src", exclude=["tests"]),
package_dir={"": "src"},
entry_points={
'console_scripts': [
'cph=conda_package_handling.cli:main'
]
},
install_requires=requirements,
keywords='conda-package-handling',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
]
)