gh-12 Сформировать пакет и выложить в PyPI

This commit is contained in:
Tiendil 2015-06-07 20:37:30 +03:00
parent e276a08467
commit bc496f64be
8 changed files with 188 additions and 159 deletions

View file

@ -2,17 +2,32 @@
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
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',
'Natural Language :: English',
'Natural Language :: Russian'],
keywords=['gamedev', 'game', 'game development', 'names', 'names generation'],
packages=setuptools.find_packages(),
install_requires=['unicodecsv'],
include_package_data=True,
test_suite = 'tests',
install_requires = ['unicodecsv'],
# package_data = { '': ['*.json'] }
)
)