-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (25 loc) · 898 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
#! /usr/bin/env python
import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name = 'django-smokeping',
version = '0.1',
packages = ['smokeping'],
include_package_data = True,
description = 'Django app for Smokeping configuration.',
long_description = README,
author = 'Julien Collas',
author_email = 'jul.collas@gmail.com',
install_requires=['django-mptt==0.5.5'],
classifiers = [
'Environment :: Web Environment',
'License :: OSI Approved :: GNU License',
'Framework :: Django',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP'
]
)