python-tutorials/setup.py

26 lines
555 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# Learn more: https://github.com/kennethreitz/setup.py
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='sample',
version='0.1.0',
description='Sample Package Python Tutorials',
long_description=readme,
2021-03-05 16:22:48 -05:00
author='YuCheng Hu',
author_email='yucheng.hu@ossez.com',
url='https://github.com/kennethreitz/samplemod',
license=license,
packages=find_packages(exclude=('tests', 'docs'))
)