More changes for pypi
[ton] / setup.py
1 from setuptools import setup, find_packages
2 from codecs import open
3 from os import path
4
5 here = path.abspath(path.dirname(__file__))
6
7 # Get the long description from the README file
8 with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
9     long_description = f.read()
10
11 setup(
12     name='don',
13     version='0.0.1',
14     description='A dual-format serialization library and reference implementation for Dual Object Notation',
15     long_description=long_description,
16     url='https://github.com/kerkeslager/don',
17     author='David Kerkeslager',
18     author_email='',
19     license='GPL-3.0',
20     # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
21     classifiers=[
22         # How mature is this project? Common values are
23         #   3 - Alpha
24         #   4 - Beta
25         #   5 - Production/Stable
26         'Development Status :: 3 - Alpha',
27
28         # Indicate who your project is intended for
29         'Intended Audience :: Developers',
30                 'Topic :: Software Development :: Libraries',
31
32         # Pick your license as you wish (should match "license" above)
33                 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
34
35         # Specify the Python versions you support here. In particular, ensure
36         # that you indicate whether you support Python 2, Python 3 or both.
37         'Programming Language :: Python :: 3',
38         'Programming Language :: Python :: 3.3',
39         'Programming Language :: Python :: 3.4',
40         'Programming Language :: Python :: 3.5',
41     ],
42
43     # What does your project relate to?
44     keywords='serialization encoding',
45
46     # You can just specify the packages manually here if your project is
47     # simple. Or you can use find_packages().
48     packages=find_packages(exclude=['contrib', 'docs', 'tests']),
49
50     # Alternatively, if you want to distribute just a my_module.py, uncomment
51     # this:
52     #   py_modules=["my_module"],
53
54     # List run-time dependencies here.  These will be installed by pip when
55     # your project is installed. For an analysis of "install_requires" vs pip's
56     # requirements files see:
57     # https://packaging.python.org/en/latest/requirements.html
58     install_requires=[],
59
60     # List additional groups of dependencies here (e.g. development
61     # dependencies). You can install these using the following syntax,
62     # for example:
63     # $ pip install -e .[dev,test]
64     extras_require={
65         'dev': [],
66         'test': [],
67     },
68
69     # If there are data files included in your packages that need to be
70     # installed, specify them here.  If using Python 2.6 or less, then these
71     # have to be included in MANIFEST.in as well.
72     package_data={
73     },
74 )