File: setup.py

package info (click to toggle)
okasha 0.3.0-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm
  • size: 784 kB
  • sloc: python: 1,024; sh: 30; makefile: 7; javascript: 2
file content (18 lines) | stat: -rw-r--r-- 459 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /usr/bin/python3
from distutils.core import setup
from glob import *
import os, sys
# to install type: 
# python setup.py install --root=/

# do the install
setup (name='okasha', version='0.1.0',
      description='trivial WSGI web framework for python',
      author='Muayyad Saleh Alsadi',
      author_email='alsadi@ojuba.org',
      url='http://git.ojuba.org/cgit/okasha/about/',
      license='Waqf',
      packages=['okasha'],
      data_files=[]
)