forked from conda/conda-pack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.31 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
from setuptools import setup
import versioneer
setup(name='conda-pack',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url='https://conda.github.io/conda-pack/',
project_urls={"Source Code": "https://github.com/conda/conda-pack"},
maintainer='Jim Crist',
maintainer_email='[email protected]',
keywords='conda packaging',
classifiers=["Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Software Distribution",
"Topic :: Software Development :: Build Tools"],
license='BSD',
description='Package conda environments for redistribution',
long_description=open('README.md').read(),
packages=['conda_pack'],
package_data={'conda_pack': ['scripts/windows/*', 'scripts/posix/*']},
entry_points='''
[console_scripts]
conda-pack=conda_pack.cli:main
''',
install_requires=['setuptools'],
zip_safe=False)