Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Sh-wayz committed Nov 22, 2020
1 parent a4a9ca1 commit 84be7d8
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
from containers import __version__
from setuptools import find_packages, setup


with open('README.md', 'r') as fh:
long_description = fh.read()

setup(
name='enhanced-containers',
packages=find_packages(include=['containers']),
version=__version__,
description='Enhanced types and data structures.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Sh-wayz/enhanced-containers',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6'

)

0 comments on commit 84be7d8

Please sign in to comment.