Add tests for core/refresher.py
[gram.git] / setup.py
index 19bf8fd7b50887c0ab6ae506e102adc16ae1432e..5e4d5534c9b3b50dfdc808da7844e8845962558b 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -6,15 +6,14 @@ from setuptools import find_packages
 
 setup(
     name="gram",
-    description="Small footprint and configurable DRAM core",
-    author="Florent Kermarrec",
-    author_email="florent@enjoy-digital.fr",
-    url="http://enjoy-digital.fr",
-    download_url="https://github.com/enjoy-digital/litedram",
-    test_suite="test",
+    description="DRAM core for LambdaSoC",
+    author="LambdaConcept",
+    author_email="contact@lambdaconcept.com",
+    url="https://lambdaconcept.com",
+    download_url="https://github.com/lambdaconcept/gram",
     license="BSD",
     python_requires="~=3.6",
-    install_requires=["pyyaml"],
-    packages=find_packages(exclude=("test*", "sim*", "doc*", "examples*")),
+    install_requires=[],
+    packages=find_packages(exclude=("test*", "doc*", "examples*", "contrib*", "libgram*")),
     include_package_data=True,
 )