XThomasBU commited on
Commit
3bc02c2
·
1 Parent(s): e5aac56
Files changed (1) hide show
  1. setup.py +5 -0
setup.py CHANGED
@@ -4,6 +4,9 @@ from setuptools import setup, find_packages
4
  with open("requirements.txt") as f:
5
  requirements = f.read().splitlines()
6
 
 
 
 
7
  setup(
8
  name="edubotics-core",
9
  version="0.1.0",
@@ -15,4 +18,6 @@ setup(
15
  author="Xavier Thomas, Farid Karimli, Tom Gardos",
16
  url="https://github.com/edubotics-ai/edubot-core",
17
  license="MIT",
 
 
18
  )
 
4
  with open("requirements.txt") as f:
5
  requirements = f.read().splitlines()
6
 
7
+ with open("README.md") as f:
8
+ readme = f.read()
9
+
10
  setup(
11
  name="edubotics-core",
12
  version="0.1.0",
 
18
  author="Xavier Thomas, Farid Karimli, Tom Gardos",
19
  url="https://github.com/edubotics-ai/edubot-core",
20
  license="MIT",
21
+ long_description=readme,
22
+ long_description_content_type="text/markdown",
23
  )