mirror of
https://github.com/Tiendil/pynames.git
synced 2025-09-22 04:40:47 +02:00
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
# coding: utf-8
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
name='Pynames',
|
|
version='0.2.0',
|
|
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',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Natural Language :: English',
|
|
'Natural Language :: Russian'],
|
|
keywords=['gamedev', 'game', 'game development', 'names', 'names generation'],
|
|
packages=setuptools.find_packages(),
|
|
install_requires=['six', 'unicodecsv'],
|
|
include_package_data=True,
|
|
test_suite = 'tests',
|
|
)
|