-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.01 KB
/
setup.py
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
# -*- coding: utf-8 -*-
from __future__ import with_statement
from distutils.core import setup
from setuptools import find_packages
with open('README.rst') as readme:
long_description = readme.read()
with open('requirements.txt') as reqs:
install_requires = [
line for line in reqs.read().split('\n') if (line and not
line.startswith('--'))
]
setup(
name='irclogs',
version=__import__('irclogs').__version__,
author='Bruno Renie',
author_email='bruno@renie.fr',
packages=find_packages(),
include_package_data=True,
url='https://logs.bruno.im',
license='BSD',
description='A web interface for IRC logs',
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Natural Language :: English',
'Programming Language :: Python',
],
zip_safe=False,
install_requires=install_requires,
)