Mercurial > hg > MakeItSo
annotate setup.py @ 232:66ca1a67a76c
one more time
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Mon, 14 Dec 2015 14:16:39 -0800 |
| parents | 2bc1dd66dd80 |
| children | ceb5c8ee5bbe |
| rev | line source |
|---|---|
| 229 | 1 """ |
| 2 setup.py script for MakeItSo | |
| 232 | 3 |
| 4 For packaging info please see: | |
| 5 https://docs.python.org/2/distutils/sourcedist.html | |
| 229 | 6 """ |
| 7 | |
|
102
ad5fd3eb6674
template fixes....not the best, but will do
Jeff Hammel <jhammel@mozilla.com>
parents:
49
diff
changeset
|
8 import os |
|
179
5bd1c50c6f61
works weirdly but kinda works
Jeff Hammel <k0scist@gmail.com>
parents:
174
diff
changeset
|
9 from setuptools import setup |
|
0
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
10 |
|
102
ad5fd3eb6674
template fixes....not the best, but will do
Jeff Hammel <jhammel@mozilla.com>
parents:
49
diff
changeset
|
11 try: |
|
ad5fd3eb6674
template fixes....not the best, but will do
Jeff Hammel <jhammel@mozilla.com>
parents:
49
diff
changeset
|
12 here = os.path.dirname(os.path.abspath(__file__)) |
|
ad5fd3eb6674
template fixes....not the best, but will do
Jeff Hammel <jhammel@mozilla.com>
parents:
49
diff
changeset
|
13 description = file(os.path.join(here, 'README.txt')).read() |
|
ad5fd3eb6674
template fixes....not the best, but will do
Jeff Hammel <jhammel@mozilla.com>
parents:
49
diff
changeset
|
14 except IOError: |
|
ad5fd3eb6674
template fixes....not the best, but will do
Jeff Hammel <jhammel@mozilla.com>
parents:
49
diff
changeset
|
15 description = '' |
|
ad5fd3eb6674
template fixes....not the best, but will do
Jeff Hammel <jhammel@mozilla.com>
parents:
49
diff
changeset
|
16 |
| 232 | 17 version = '0.3.20' |
|
0
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
18 |
|
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
19 setup(name='MakeItSo', |
|
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
20 version=version, |
|
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
21 description='filesystem template interpreter', |
|
102
ad5fd3eb6674
template fixes....not the best, but will do
Jeff Hammel <jhammel@mozilla.com>
parents:
49
diff
changeset
|
22 long_description=description, |
|
0
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
23 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
| 119 | 24 keywords='templates', |
|
0
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
25 author='Jeff Hammel', |
| 173 | 26 author_email='k0scist@gmail.com', |
|
212
cffc729926b9
correct text and bump version
Jeff Hammel <k0scist@gmail.com>
parents:
211
diff
changeset
|
27 url='http://k0s.org/hg/MakeItSo', |
| 29 | 28 license='MPL', |
| 172 | 29 packages=['makeitso'], |
|
0
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
30 include_package_data=True, |
| 211 | 31 package_data={'makeitso': ['python_package/*']}, |
|
0
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
32 zip_safe=False, |
|
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
33 install_requires=[ |
|
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
34 # -*- Extra requirements: -*- |
|
138
169e02e190ef
peg to tempita version and eliminate cruft
Jeff Hammel <jhammel@mozilla.com>
parents:
131
diff
changeset
|
35 'tempita >= 0.5.1', |
|
44
6e08cca7d656
do API variable reading and stubbing a bit for control flow
Jeff Hammel <jhammel@mozilla.com>
parents:
30
diff
changeset
|
36 'webob', |
|
0
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
37 ], |
|
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
38 entry_points=""" |
|
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
39 # -*- Entry points: -*- |
|
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
40 [console_scripts] |
|
5
f064be514e53
choose a better filename and remove some stuff from shebang
Jeff Hammel <jhammel@mozilla.com>
parents:
0
diff
changeset
|
41 makeitso = makeitso.makeitso:main |
|
102
ad5fd3eb6674
template fixes....not the best, but will do
Jeff Hammel <jhammel@mozilla.com>
parents:
49
diff
changeset
|
42 make-python-package = makeitso.python:main |
| 170 | 43 mkpydir = makeitso.mkpydir:main |
|
174
aed8c4af5f26
STUB: makeitso/cli.py makeitso/script2package.py setup.py
Jeff Hammel <k0scist@gmail.com>
parents:
173
diff
changeset
|
44 script2package = makeitso.script2package:main |
| 183 | 45 file2template = makeitso.file2template:main |
|
105
67b50417b8d1
stub out loading api templates; this wont work, however, since one is in the middle of a module trying to load a module that depends on the module you are in
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
46 |
|
67b50417b8d1
stub out loading api templates; this wont work, however, since one is in the middle of a module trying to load a module that depends on the module you are in
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
47 [makeitso.templates] |
|
67b50417b8d1
stub out loading api templates; this wont work, however, since one is in the middle of a module trying to load a module that depends on the module you are in
Jeff Hammel <jhammel@mozilla.com>
parents:
102
diff
changeset
|
48 python-package = makeitso.python:PythonPackageTemplate |
|
131
4922bee3d080
add single module to registered templates
Jeff Hammel <jhammel@mozilla.com>
parents:
130
diff
changeset
|
49 python-module = makeitso.python:PythonModuleTemplate |
| 159 | 50 python-script = makeitso.python:PythonScriptTemplate |
|
179
5bd1c50c6f61
works weirdly but kinda works
Jeff Hammel <k0scist@gmail.com>
parents:
174
diff
changeset
|
51 setup.py = makeitso.python:SetupPy |
| 200 | 52 python-unittest = makeitso.python:Unittest |
|
0
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
53 """, |
|
7a76836b50a7
initial (non-working) commit to makeitso
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
54 ) |
