-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 814 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 814 Bytes
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
from setuptools import setup, find_packages
from wdict import __version__
REQUIRES = ["numpy"]
CLASSIFIERS = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Topic :: Software Development"]
setup(
name='wdict',
version=__version__,
description='extended dictionary class',
url='https://github.com/shinaji/wdict',
author='shinaji',
author_email='shina.synergy@gmail.com',
license='MIT',
keywords='dict',
packages=find_packages(),
install_requires=REQUIRES,
classifiers=CLASSIFIERS,
)