Skip to content

Commit e42a5bb

Browse files
committed
Start
0 parents  commit e42a5bb

File tree

4 files changed

+42
-0
lines changed

4 files changed

+42
-0
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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+

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# LibCoveWeb2
2+

libcoveweb2/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
author_email='[email protected]',
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+

0 commit comments

Comments
 (0)