pynames/setup.py

31 lines
923 B
Python
Raw Normal View History

2012-01-18 23:43:37 +03:00
# coding: utf-8
import setuptools
setuptools.setup(
name='Pynames',
2020-10-06 14:36:21 +03:00
version='0.2.3',
description='name generation library',
2020-10-06 14:36:21 +03:00
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',
'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'],
include_package_data=True,
test_suite = 'tests',
)