-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
45 lines (42 loc) · 1.66 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from codecs import open
from setuptools import setup, find_packages
DESCRIPTION = """
Python library to convert Python class instances(Objects) both flat and nested into a dictionary data structure.
It's very useful in converting Python Objects into JSON format especially for nested objects,
because they can't be handled well by json library
"""
with open('README.md', 'r', 'utf-8') as f:
readme = f.read()
REQUIRES_PYTHON = '>=2.7'
setup(
name = 'dictfier',
version = '1.5.1',
description = DESCRIPTION,
long_description = readme,
long_description_content_type = 'text/markdown',
url = "https://github.com/yezyilomo/dictfier",
author = 'Yezy Ilomo',
author_email = '[email protected]',
license = 'MIT',
packages = find_packages(exclude=('tests','test')),
package_data={'': ['LICENSE']},
install_requires = [],
python_requires = REQUIRES_PYTHON,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
test_suite = "tests",
)