|
1 | | -from setuptools import setup |
| 1 | +#!/usr/bin/env python |
| 2 | +# -*- encoding: utf-8 -*- |
2 | 3 |
|
3 | | -import django_elastipymemcache |
| 4 | +import io |
| 5 | + |
| 6 | +from setuptools import find_packages, setup |
4 | 7 |
|
| 8 | +import django_elastipymemcache |
5 | 9 |
|
6 | 10 | setup( |
7 | 11 | name='django-elastipymemcache', |
8 | 12 | version=django_elastipymemcache.__version__, |
9 | 13 | description='Django cache backend for Amazon ElastiCache (memcached)', |
10 | | - long_description=open('README.md').read(), |
11 | | - author='Danil Gusev', |
12 | | - platforms='any', |
13 | | - author_email='info@uncovertruth.jp', |
| 14 | + keywords='elasticache amazon cache pymemcache memcached aws', |
| 15 | + author='UNCOVER TRUTH Inc.', |
| 16 | + author_email='develop@uncovertruth.co.jp', |
14 | 17 | url='http://github.com/uncovertruth/django-elastipymemcache', |
15 | 18 | license='MIT', |
16 | | - keywords='elasticache amazon cache pymemcache memcached aws', |
17 | | - packages=['django_elastipymemcache'], |
18 | | - install_requires=['pymemcache', 'Django>=1.8'], |
| 19 | + long_description=io.open('README.rst').read(), |
| 20 | + platforms='any', |
| 21 | + zip_safe=False, |
19 | 22 | classifiers=[ |
20 | 23 | 'Development Status :: 4 - Beta', |
21 | 24 | 'Environment :: Web Environment', |
22 | | - 'Environment :: Web Environment :: Mozilla', |
23 | | - 'Framework :: Django', |
| 25 | + 'Framework :: Django :: 1.8', |
| 26 | + 'Framework :: Django :: 1.9', |
| 27 | + 'Framework :: Django :: 1.10', |
| 28 | + 'Framework :: Django :: 1.11', |
24 | 29 | 'Intended Audience :: Developers', |
25 | | - 'License :: OSI Approved :: BSD License', |
| 30 | + 'License :: OSI Approved :: MIT License', |
26 | 31 | 'Operating System :: OS Independent', |
27 | | - 'Programming Language :: Python', |
| 32 | + 'Programming Language :: Python :: 2', |
| 33 | + 'Programming Language :: Python :: 2.7', |
| 34 | + 'Programming Language :: Python :: 3', |
| 35 | + 'Programming Language :: Python :: 3.3', |
| 36 | + 'Programming Language :: Python :: 3.4', |
| 37 | + 'Programming Language :: Python :: 3.5', |
| 38 | + 'Programming Language :: Python :: 3.6', |
28 | 39 | 'Topic :: Software Development :: Libraries :: Python Modules', |
29 | 40 | ], |
| 41 | + packages=find_packages(exclude=('tests',)), |
| 42 | + include_package_data=True, |
| 43 | + install_requires=[ |
| 44 | + 'pymemcache', |
| 45 | + 'Django>=1.8', |
| 46 | + ], |
30 | 47 | ) |
0 commit comments