Browse Source

NF: improve package definition

Christian Mönch 3 years ago
parent
commit
96850a711f
2 changed files with 10 additions and 3 deletions
  1. 6 0
      pyproject.toml
  2. 4 3
      setup.py

+ 6 - 0
pyproject.toml

@@ -0,0 +1,6 @@
+[build-system]
+requires = [
+    "setuptools>=42",
+    "wheel"
+]
+build-backend = "setuptools.build_meta"

+ 4 - 3
setup.py

@@ -1,5 +1,6 @@
 # -*- coding: utf-8 -*-
 
+
 import setuptools
 
 
@@ -9,10 +10,10 @@ with open("README.md", "r") as fh:
 
 setuptools.setup(
     name="datalad-metadata-model",
-    version="0.1.0",
-    author="Christian Mönch",
+    version="0.0.1",
+    author="The Datalad Team",
     author_email="christian.moench@web.de",
-    description="Metadata model for datalad",
+    description="Datalad Metadata Model",
     long_description=long_description,
     long_description_content_type="text/markdown",
     url="https://github.com/christian-monch/metadata-model",