mirror of
https://github.com/Tiendil/pynames.git
synced 2026-02-10 03:24:24 +01:00
prepair package
This commit is contained in:
parent
57eb8209c3
commit
a599e3ba1b
5 changed files with 152 additions and 0 deletions
16
setup.py
Normal file
16
setup.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# 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'
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue