Browse code

Add implementation

Robert Cranston authored on 11/03/2022 20:46:26
Showing 1 changed files
... ...
@@ -19,6 +19,8 @@ setup(
19 19
     ],
20 20
     python_requires='>=3, <4',
21 21
     install_requires=[
22
+        'docopt',
23
+        'lxml',
22 24
     ],
23 25
     py_modules=['glregistry'],
24 26
     entry_points={
Browse code

Add installation

Robert Cranston authored on 11/03/2022 18:57:51
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='glregistry',
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/glregistry',
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=['glregistry'],
24
+    entry_points={
25
+        'console_scripts': [
26
+            'glregistry = glregistry:main',
27
+        ],
28
+    },
29
+)