-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 755 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='marc21',
version='0.6.0',
description='library to create bibliographic MARC21 records',
url='https://github.com/jwvdvuurst/marc21.git',
author='John van der Vuurst',
author_email='jwvdvuurst@gmail.com',
license='EUPL-1.1',
packages=find_packages(include=['marc21', 'marc21.*']),
install_requires=[],
python_requires='>=3.10',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: European Union Public Licence 1.1 (EUPL 1.1)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.11',
'Topic :: Other/Nonlisted Topic'
]
)