-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 825 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# coding: utf-8
from setuptools import setup
from setuptools import find_packages
def read_file(path):
with open(path) as f:
return f.read().strip()
setup(
name='pyconstring',
version=read_file('VERSION'),
description='Tool to handle connection strings',
long_description=read_file('README.rst'),
url='https://github.com/bgusach/pyconstring',
author='Bor González-Usach',
author_email='[email protected]',
license='MIT',
keywords='connection string',
zip_safe=True,
package_dir={'': 'src'},
packages=find_packages('src'),
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Topic :: Database',
'Topic :: Utilities',
],
)