-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (24 loc) · 914 Bytes
/
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
import setuptools
def parse_requirements(requirements_file):
with open(requirements_file, 'r') as f:
return [line for line in f
if line.strip() and not line.startswith('#')]
setuptools.setup(
name="django-jabber",
version="1.0.1",
url="https://github.com/alexmorozov/django-jabber",
author="Alex Morozov",
author_email="inductor2000@mail.ru",
description="Send Jabber notifications from Django",
long_description=open('README.rst').read(),
packages=setuptools.find_packages(),
install_requires=parse_requirements('requirements.txt'),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
)