-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
52 lines (46 loc) · 1.41 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
52
from distutils.util import convert_path
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
kwds = {} # Additional keyword arguments for setup
d = {}
execfile(convert_path('enstaller/__init__.py'), d)
kwds['version'] = d['__version__']
f = open('README.rst')
kwds['long_description'] = f.read()
f.close()
setup(
name="enstaller",
author="Enthought, Inc.",
author_email="[email protected]",
url = "https://github.com/enthought/enstaller",
license="BSD",
description = "Install and managing tool for egg-based packages",
packages = [
'egginst',
'enstaller',
'enstaller/store',
'enstaller/indexed_repo',
'enstaller/proxy',
],
entry_points = {
"console_scripts": [
"enpkg = enstaller.main:main",
"egginst = egginst.main:main",
"update-patches = enstaller.patch:main",
],
},
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: System :: Software Distribution",
"Topic :: System :: Systems Administration",
],
**kwds
)