27 lines
491 B
Python
27 lines
491 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
with open('README.rst') as f:
|
||
|
readme = f.read()
|
||
|
|
||
|
setup(
|
||
|
name='py3x',
|
||
|
version='0.1.2',
|
||
|
description='Sample package for Python3',
|
||
|
long_description=readme,
|
||
|
author='Andrei Astafev',
|
||
|
author_email='dev@246060.ru',
|
||
|
url='https://dsp.246060.ru',
|
||
|
|
||
|
packages=[
|
||
|
'py3x',
|
||
|
],
|
||
|
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'py3x = py3x:main',
|
||
|
],
|
||
|
},
|
||
|
)
|