-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 1.13 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
from setuptools import setup, find_packages
setup(
name='Open-Printer-Management-System',
version='1.1.0',
description='Django project to easily view and manage printer SNMP data.',
url='https://github.com/rluzuriaga/Open-Printer-Management-System',
license='MIT',
author='Rodrigo Luzuriaga',
author_email='[email protected]',
maintainer='Rodrigo Luzuriaga',
maintainer_email='[email protected]',
zip_safe=False,
packages=find_packages(),
install_requires=[
'django>=3.0,<4.0',
'easysnmp>=0.2.5,<0.3.0',
'gunicorn>=20.0,<21'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server'
]
)