forked from yatiml/yatiml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.13 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.13 KB
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
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='yatiml',
version='0.8.1.dev',
description="Reading, checking and writing YAML from Python",
long_description=readme + '\n\n',
author="Lourens Veen",
author_email='l.veen@esciencecenter.nl',
url='https://github.com/yatiml/yatiml',
package_data={'yatiml': ['py.typed']},
packages=[
'yatiml',
],
package_dir={'yatiml': 'yatiml'},
include_package_data=True,
license="Apache Software License 2.0",
zip_safe=False,
keywords='yatiml',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
install_requires=[
'ruamel.yaml>=0.15.71,<0.17',
'typing_extensions'
]
)