Browse code

Add implementation

Robert Cranston authored on 12/10/2020 00:29:21
Showing 1 changed files
... ...
@@ -20,6 +20,10 @@ setup(
20 20
     ],
21 21
     python_requires='>=3, <4',
22 22
     install_requires=[
23
+        'docopt',
24
+        'requests',
25
+        'beautifulsoup4',
26
+        'lxml',
23 27
     ],
24 28
     py_modules=['bygglogistik_utils'],
25 29
     entry_points={
Browse code

Add installation

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