forked from amitbeka/conda-merge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (39 loc) · 1.22 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
45
46
47
48
49
50
51
"""A setup module for conda-merge"""
import os
from setuptools import setup
from codecs import open
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='conda-merge',
version='0.1.4',
description='Tool for merging conda environment files',
long_description=long_description,
url='https://github.com/amitbeka/conda-merge',
author='Amit Beka',
author_email='amit.beka@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Build Tools',
'Topic :: System :: Installation/Setup',
],
keywords='conda anaconda environment',
py_modules=["conda_merge"],
install_requires=['pyyaml'],
python_requires='>=3',
extras_require={
'test': ['pytest'],
},
entry_points={
'console_scripts': [
'conda-merge=conda_merge:main',
],
},
)