-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 1.02 KB
/
setup.py
File metadata and controls
33 lines (28 loc) · 1.02 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
#!/usr/bin/env python
from setuptools import setup, find_packages
def readme():
with open("README.md") as f:
return f.read()
setup(
name="init-args-serializer",
version="1.1",
description="Python serializer based on init-args",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/Xfel/init-args-serializer",
author="Felix Treede",
author_email="felixtreede@yahoo.de",
packages=find_packages(include=["init_args_serializer"], exclude=["tests"]),
python_requires=">=3.7, <4",
install_requires=[],
extras_require={"test": ["pytest", "pytest-cov"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
],
keywords="serialization, serializer, init-args",
)