py3x/setup.py

31 lines
599 B
Python
Raw Normal View History

2019-07-03 16:14:35 +00:00
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst', encoding='utf-8') as f:
2019-07-03 16:14:35 +00:00
readme = f.read()
2019-07-04 09:45:36 +00:00
with open('LICENSE', encoding='utf-8') as f:
2019-07-04 09:43:34 +00:00
license = f.read()
2019-07-03 16:14:35 +00:00
setup(
name='py3x',
version='0.1.2',
description='Sample package for Python3',
long_description=readme,
2019-07-04 09:43:34 +00:00
license=license,
2019-07-03 16:14:35 +00:00
author='Andrei Astafev',
author_email='dev@246060.ru',
url='https://dsp.246060.ru',
packages=[
'py3x',
],
entry_points={
'console_scripts': [
'py3x = py3x:main',
],
},
)