forked from usnistgov/NEMO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (38 loc) · 1.26 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
36
37
38
39
from setuptools import setup, find_packages
setup(
name='NEMO',
version='2.2.0',
python_requires='>=3.6',
packages=find_packages(exclude=['NEMO.tests','NEMO.tests.*']),
include_package_data=True,
url='https://github.com/usnistgov/NEMO',
license='Public domain',
author='Center for Nanoscale Science and Technology',
author_email='[email protected]',
description='NEMO is a laboratory logistics web application. Use it to schedule reservations, control tool access, track maintenance issues, and more.',
long_description='Find out more about NEMO on the GitHub project page https://github.com/usnistgov/NEMO',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'cryptography==2.8',
'Django==2.2.10',
'django-filter==2.2.0',
'djangorestframework==3.11.0',
'ldap3==2.6.1',
'python-dateutil==2.8.1',
'requests==2.22.0',
'Pillow==7.0.0',
],
entry_points={
'console_scripts': ['nemo=NEMO.provisioning:entry_point'],
},
)