Parent: [d33463] (diff)

Download this file

setup.py    42 lines (29 with data), 658 Bytes

 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
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='pyforge',
version='0',
description='',
author='',
author_email='',
#url='',
install_requires=[
],
entry_points="""
[paste.app_factory]
[paste.app_install]
[paste.paster_create_template]
[allura]
[allura.auth]
[allura.project_registration]
[flyway.migrations]
[flyway.test_migrations]
[paste.paster_command]
[easy_widgets.resources]
""",
)