-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (40 loc) · 1.5 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
41
42
43
44
from setuptools import setup
from pathlib import Path
from conda_minify import __version__
here = Path(__file__).parent.absolute()
with here.joinpath('README.md').open() as fp:
long_description = fp.read().strip()
# with here.joinpath('VERSION').open() as fp:
# VERSION = fp.read().strip()
setup(
name='conda-minify',
version=__version__,
description='A simple library to create minified or relaxed versions '
'of Conda environment specs for cross-platform sharing.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/jamespreed/conda-minify',
author='James Reed',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='conda virtual environment yaml',
packages=['conda_minify'],
python_requires='>=3.4, <4',
install_requires=['conda>=4.3.0', 'pyyaml>3.0'],
#data_files=[('', ['VERSION'])],
entry_points={ # Optional
'console_scripts': [
'conda-minify = conda_minify.__main__:main',
],
},
)