Compare commits

...

2 Commits

Author SHA1 Message Date
c2543e1f88 Лицензия 2019-07-04 12:43:34 +03:00
2b2533da31 Явное указание кодировки файла 2019-07-04 12:33:39 +03:00
3 changed files with 13 additions and 1 deletions

7
LICENSE Normal file
View File

@ -0,0 +1,7 @@
Public domain
All of the code and documentation has been dedicated to the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute
the original code, either in source code form or as a compiled binary,
for any purpose, commercial or non-commercial, and by any means.

1
MANIFEST.in Normal file
View File

@ -0,0 +1 @@
include LICENSE

View File

@ -2,14 +2,18 @@
from setuptools import setup, find_packages
with open('README.rst') as f:
with open('README.rst', encoding='utf-8') as f:
readme = f.read()
with open('LICENSE', encouding='utf-8') as f:
license = f.read()
setup(
name='py3x',
version='0.1.2',
description='Sample package for Python3',
long_description=readme,
license=license,
author='Andrei Astafev',
author_email='dev@246060.ru',
url='https://dsp.246060.ru',