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
|
#!/usr/bin/env python
"""
Copyright (c) 2015, Jairus Martin.
Distributed under the terms of the MIT License.
The full license is in the file COPYING.txt, distributed with this software.
Created on Mar 2, 2016
"""
from setuptools import setup, find_packages
setup(
name="enamlx",
version="0.6.4",
description="Additional Qt Widgets for Enaml",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="frmdstryr",
author_email="frmdstryr@gmail.com",
url="https://github.com/frmdstryr/enamlx",
packages=find_packages(),
include_package_data=True,
install_requires=["enaml"],
keywords=["enaml", "qt", "tree", "table", "widgets"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
|