-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
43 lines (34 loc) · 900 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
35
36
37
38
39
40
41
42
43
import os
from setuptools import setup, find_packages
here = os.path.dirname(__file__)
__version__ = '0.1'
__author__ = 'Atsushi Odagiri'
__author_email__ = '[email protected]'
def _read(filename):
try:
with open(os.path.join(here, filename)) as f:
return f.read()
except Exception:
return ""
requires = [
"distlib",
"wheel",
]
points = {
"console_scripts": [
"conda2wheel=conda2wheel:main",
]
}
setup(
name="conda2wheel",
author=__author__,
author_email=__author_email__,
url="https://github.com/aodag/conda2wheel",
version=__version__,
zip_safe=False,
packages=find_packages(),
description="``conda2wheel`` converts conda format packages to wheel format packages.",
long_description=_read("README.rst") + "\n" + _read("ChangeLog.rst"),
install_requires=requires,
entry_points=points,
)