File tree Expand file tree Collapse file tree 4 files changed +42
-0
lines changed Expand file tree Collapse file tree 4 files changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
6
+ and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7
+
8
+ ## [ Unreleased]
9
+
Original file line number Diff line number Diff line change
1
+ # LibCoveWeb2
2
+
Original file line number Diff line number Diff line change
1
+ from setuptools import setup , find_packages
2
+
3
+ install_requires = []
4
+
5
+ setup (
6
+ name = 'libcoveweb2' ,
7
+ version = '0.0.0' ,
8
+ author = 'Open Data Services' ,
9
+
10
+ packages = find_packages (),
11
+ package_data = {
12
+ 'libcoveweb2' : [
13
+ 'static/*' ,
14
+ 'static/*/*' ,
15
+ 'static/*/*/*' ,
16
+ 'static/*/*/*/*' ,
17
+ 'templates/*' ,
18
+ 'templates/*/*'
19
+ ]
20
+ },
21
+ url = 'https://github.com/OpenDataServices/lib-cove-web-2' ,
22
+ description = '' ,
23
+ classifiers = [
24
+ ],
25
+ python_requires = ">=3.8" ,
26
+ install_requires = [
27
+ ],
28
+ extras_require = {
29
+ }
30
+ )
31
+
You can’t perform that action at this time.
0 commit comments