-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 785 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 785 Bytes
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
from setuptools import setup
setup(
name='nomad-diff',
version='1.0.0',
description='Nomad job diff formatter in Python',
author='Strigo.io',
author_email='ops@strigo.io',
python_requires='>=3.7',
url='https://github.com/strigo/nomad-diff',
packages=['nomad_diff'],
install_requires=[
'pydantic~=1.8.1',
'colorama~=0.4.4',
],
include_package_data=True,
license='MIT',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries',
],
)