2012-01-18 23:43:37 +03:00
|
|
|
# coding: utf-8
|
|
|
|
import setuptools
|
|
|
|
|
|
|
|
setuptools.setup(
|
2015-06-07 20:37:30 +03:00
|
|
|
name='Pynames',
|
2016-12-04 17:06:24 +03:00
|
|
|
version='0.2.2',
|
2015-06-07 20:37:30 +03:00
|
|
|
description='name generation library',
|
|
|
|
long_description = open('README.rst').read(),
|
|
|
|
url='https://github.com/Tiendil/pynames',
|
|
|
|
author='Aleksey Yeletsky <Tiendil>',
|
|
|
|
author_email='a.eletsky@gmail.com',
|
|
|
|
license='BSD',
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
|
|
|
'Topic :: Games/Entertainment',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2016-06-17 14:25:42 +06:00
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
2015-06-07 20:37:30 +03:00
|
|
|
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Natural Language :: Russian'],
|
|
|
|
keywords=['gamedev', 'game', 'game development', 'names', 'names generation'],
|
|
|
|
packages=setuptools.find_packages(),
|
2016-06-17 14:25:42 +06:00
|
|
|
install_requires=['six', 'unicodecsv'],
|
2015-06-07 20:37:30 +03:00
|
|
|
include_package_data=True,
|
2015-02-09 22:20:33 +02:00
|
|
|
test_suite = 'tests',
|
2015-06-07 20:37:30 +03:00
|
|
|
)
|