-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
25 lines (23 loc) · 1.22 KB
/
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
from distutils.core import setup
version = '0.8.20'
setup(
name='prodict',
packages=['prodict'], # this must be the same as the name above
version=version,
description='Prodict = Pro Dictionary with IDE friendly(auto code completion), dot-accessible attributes and more.',
long_description='Ever wanted to use a dict like a class and access keys as attributes? '
'Prodict does exactly this.'
'Although there are number of modules doing this, Prodict does a little bit more. You can '
'provide type hints and get auto-complete!',
author='Ramazan Polat',
author_email='[email protected]',
url='https://github.com/ramazanpolat/prodict',
download_url='https://pypi.python.org/pypi/prodict/' + version,
keywords=['prodict', 'python3', 'typehinting', 'dynamic-props', 'dict', 'dictionary', 'auto-complete',
'auto-code-complete'],
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules'],
)