2012-01-18 23:43:37 +03:00
|
|
|
# coding: utf-8
|
|
|
|
import setuptools
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name = 'Pynames',
|
|
|
|
version = '0.1.0',
|
|
|
|
author = 'Aleksey Yeletsky',
|
|
|
|
author_email = 'a.eletsky@gmail.com',
|
|
|
|
packages = setuptools.find_packages(),
|
|
|
|
url = 'https://github.com/Tiendil/pynames',
|
|
|
|
license = 'LICENSE',
|
|
|
|
description = "characters' name generation library",
|
|
|
|
long_description = open('README.md').read(),
|
|
|
|
include_package_data = True, # setuptools-git MUST be installed
|
2015-02-09 22:20:33 +02:00
|
|
|
test_suite = 'tests',
|
|
|
|
install_requires = ['unicodecsv'],
|
2012-01-25 19:14:10 +00:00
|
|
|
# package_data = { '': ['*.json'] }
|
2012-01-18 23:43:37 +03:00
|
|
|
)
|