Browse code

Add installation

Robert Cranston authored on 08/10/2022 12:47:00
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,29 @@
1
+from setuptools import setup
2
+
3
+with open("README.md") as f:
4
+    long_description = f.read()
5
+
6
+setup(
7
+    name='glewcompat',
8
+    version='1.0.0',
9
+    description="""
10
+        Cache and query the OpenGL registry locally.
11
+    """,
12
+    long_description=long_description,
13
+    long_description_content_type='text/markdown',
14
+    url='https://git.rcrnstn.net/rcrnstn/glewcompat',
15
+    author="Robert Cranston",
16
+    classifiers=[
17
+        'Programming Language :: Python :: 3',
18
+        'License :: OSI Approved :: ISC License (ISCL)',
19
+    ],
20
+    python_requires='>=3, <4',
21
+    install_requires=[
22
+    ],
23
+    py_modules=['glewcompat'],
24
+    entry_points={
25
+        'console_scripts': [
26
+            'glewcompat = glewcompat:main',
27
+        ],
28
+    },
29
+)