1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-08 22:07:55 +00:00
py-i2phosts/setup.py

39 lines
1.5 KiB
Python
Raw Normal View History

2010-11-03 19:05:44 +00:00
from distutils.core import setup
setup(
name='py-i2phosts',
version='0.0.1',
description='py-i2phosts is a host-add service application for I2P',
author='Hidden Z',
author_email='hiddenz@mail.i2p',
url='http://py-i2phosts.i2p/',
2010-11-03 19:16:16 +00:00
packages=['pyi2phosts',
2015-10-26 18:55:35 +00:00
'pyi2phosts.postkey',
'pyi2phosts.postkey.templatetags',
'pyi2phosts.jump',
'pyi2phosts.extsources',
'pyi2phosts.lib',
'pyi2phosts.search',
'pyi2phosts.latest'],
package_dir = {'': ''},
2010-11-03 20:27:47 +00:00
package_data = {
2015-10-26 18:55:35 +00:00
'pyi2phosts': ['templates/*.html', 'static/*', 'locale/*/*/*']},
2013-09-29 17:49:31 +00:00
scripts=['bin/py-i2phosts-master', 'bin/py-i2phosts-builder', 'bin/py-i2phosts-checker',
2015-10-26 18:55:35 +00:00
'bin/py-i2phosts-fetcher', 'bin/py-i2phosts-injector', 'bin/py-i2phosts-maint'],
2010-11-03 19:05:44 +00:00
data_files=[('/etc/py-i2phosts', ['conf/master.conf', 'conf/checker.conf', 'conf/fetcher.conf',
2015-10-26 18:55:35 +00:00
'conf/maintainer.conf', 'conf/builder.conf', 'conf/common.conf', 'conf/injector.conf'],),
('/var/log/py-i2phosts', ['.placeholder'],),
('/var/run/py-i2phosts', ['.placeholder'],),],
2010-11-03 19:05:44 +00:00
classifiers=[
'Development Status :: 4 - Beta',
2015-10-26 18:55:35 +00:00
'Environment :: Console',
2010-11-03 19:05:44 +00:00
'Environment :: Web Environment',
'Intended Audience :: Developers',
2015-10-26 18:55:35 +00:00
'Intended Audience :: System Administrators',
2010-11-03 19:05:44 +00:00
'License :: OSI Approved :: GPL License',
'Operating System :: Linux',
'Programming Language :: Python',
'Framework :: Django',
],
)