mirror of
https://github.com/Tiendil/pynames.git
synced 2025-09-21 20:30:48 +02:00
18 lines
570 B
Python
18 lines
570 B
Python
# 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
|
|
test_suite = 'tests',
|
|
install_requires = ['unicodecsv'],
|
|
# package_data = { '': ['*.json'] }
|
|
)
|