We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c66669d commit 3b36905Copy full SHA for 3b36905
setup.py
@@ -0,0 +1,28 @@
1
+import pathlib
2
+from setuptools import setup
3
+
4
+# The directory containing this file
5
+HERE = pathlib.Path(__file__).parent
6
7
+# The text of the README file
8
+README = (HERE / "README.md").read_text()
9
10
+# This call to setup() does all the work
11
+setup(
12
+ name="mentor-match",
13
+ version="1.0.0",
14
+ description="A series of classes to match mentors and mentees",
15
+ long_description=README,
16
+ long_description_content_type="text/markdown",
17
+ author="Jonathan Kerr",
18
+ author_email="[email protected]",
19
+ license="MIT",
20
+ classifiers=[
21
+ "License :: OSI Approved :: MIT License",
22
+ "Programming Language :: Python :: 3",
23
+ "Programming Language :: Python :: 3.7",
24
+ ],
25
+ packages=["matching"],
26
+ include_package_data=True,
27
+ install_requires=["munkres"],
28
+)
0 commit comments