~chris.foo/bytestag/trunk

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
#!/usr/bin/env python3

import os
import sys
from distutils.core import setup

src_dir = os.path.abspath(os.path.join('src', 'py3'))
sys.path.insert(0, src_dir)

import bytestag

setup(name='Bytestag',
    version=bytestag.__version__,
    description=bytestag.description,
    long_description=bytestag.long_description,
    author='Christopher Foo',
    author_email='chris.foo@gmail.com',
    url='https://launchpad.net/bytestag',
    packages=['bytestag', 'bytestag.dht', 'bytestag.lib', 
    ],
    package_dir={'': src_dir},
    package_data={
    },
    classifiers=[
        'Development Status :: 1 - Planning',
        'Operating System :: OS Independent',
        'Topic :: Internet',
        'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
        'Programming Language :: Python :: 3.2',
    ],
    requires=[],
)