File: setup.py

package info (click to toggle)
python-defaults 2.7.9-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,484 kB
  • ctags: 248
  • sloc: python: 2,342; makefile: 565; sh: 203; perl: 7
file content (22 lines) | stat: -rw-r--r-- 606 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /usr/bin/python
# -*- coding: UTF-8 -*-
try:
    from setuptools import setup, find_packages
except ImportError:
    exit()

setup(name='Foo',
      version=0.1,
      description="Foo to rule them all",
      long_description="TODO",
      keywords='foo bar baz',
      author='Piotr Ożarowski',
      author_email='piotr@debian.org',
      url='http://www.debian.org/',
      license='MIT',
      package_dir={'': 'lib'},
      packages=find_packages('lib/'),
      package_data = {'foo': ['jquery.js']},
      zip_safe=False,
      install_requires = ['Mako', 'SQLAlchemy >=0.5', 'Baz [extras]'],
)