We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d87194a commit 907a142Copy full SHA for 907a142
setup.cfg
@@ -0,0 +1,2 @@
1
+[metadata]
2
+description-file = README.md
setup.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+
3
+try:
4
+ from setuptools import setup
5
+except ImportError:
6
+ from distutils.core import setup
7
8
9
+setup(
10
+ name='python-adapters',
11
+ packages=['adapters'],
12
+ version='1.0.0',
13
+ description='Python adapters',
14
+ author='Alexei',
15
+ author_email='hello@alexei.ro',
16
+ url='https://github.com/alexei/python-adapters',
17
+ download_url='https://github.com/alexei/python-adapters/archive/1.0.0.tar.gz', # noqa
18
+ keywords=['adapter pattern']
19
+)
0 commit comments