You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.4 KiB
39 lines
1.4 KiB
import os
|
|
from setuptools import setup
|
|
|
|
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).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-pydash-app',
|
|
version='1.4.6',
|
|
packages=['pydash'],
|
|
include_package_data=True,
|
|
license='MIT',
|
|
description='A reusable django app for monitoring your linux server.',
|
|
long_description=README,
|
|
url='https://github.com/k3oni/pydash-django-app',
|
|
author='Florian N.',
|
|
author_email='michaelneagu@gmail.com',
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Environment :: Web Environment',
|
|
'Framework :: Django',
|
|
'Intended Audience :: System Administrators',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: POSIX :: Linux',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.0',
|
|
'Programming Language :: Python :: 3.1',
|
|
'Programming Language :: Python :: 3.2',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
],
|
|
)
|