Skip to content

Commit 71a6ab1

Browse files
authored
Merge pull request #5 from pedia/0.2.2
upload to pypi
2 parents d503d8d + 7094dee commit 71a6ab1

2 files changed

Lines changed: 13 additions & 3 deletions

File tree

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[tool:pytest]
2-
log_level=debug
2+
log_level=debug

setup.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
from setuptools import setup
22

3+
long_description = open('README.md').read()
4+
35
setup(
46
name='repocache',
5-
version='0.2',
6-
description='Universal caching and proxying server for pypi/maven',
7+
version='0.2.2',
8+
description='Universal caching and proxying server for pypi and maven',
9+
long_description=long_description,
10+
long_description_content_type='text/markdown',
711
url='https://github.com/pedia/repocache',
12+
classifiers=[
13+
"Programming Language :: Python :: 3",
14+
"License :: OSI Approved :: MIT License",
15+
"Operating System :: OS Independent",
16+
],
817
author='repocache author',
918
packages=['repocache'],
1019
package_data={
@@ -13,6 +22,7 @@
1322
'templates/*.html',
1423
],
1524
},
25+
data_files=[('.', 'default.cfg')],
1626
install_requires=[
1727
'Flask',
1828
'filelock',

0 commit comments

Comments
 (0)