-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 845 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
from setuptools import setup, find_packages
VERSION = '0.1.2.1'
long_description = open('README.rst', encoding='utf-8').read()
setup(
name='laminated',
version=VERSION,
description='Dictionary like object with layers support',
long_description=long_description,
url='https://github.com/EvgeniyMakhmudov/laminated',
author='Makhmudov Evgeniy',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
],
keywords='dict dictionary layers',
packages=find_packages(exclude=['laminated.benchs', 'laminated.tests']),
)