Skip to content

Commit

Permalink
Prepare for PyPi repo
Browse files Browse the repository at this point in the history
  • Loading branch information
seaty6 authored Feb 13, 2021
1 parent 0039d42 commit 023510f
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
global-include *.md LICENSE
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
from setuptools import setup

with open('README.md') as readme_file:
long_description = readme_file.read()

setup(
name='nato-cli',
version='0.0.1',
url='https://github.com/seaty6/nato-cli',
author='Sampath Eaty',
author_email='[email protected]',
description='Allows quick translation of a string to its letters in NATO form.',
long_description=long_description,
long_description_content_type='text/markdown',
py_modules=['nato'],
entry_points={'console_scripts': ['nato = nato:main']},
package_dir={'': 'src'},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
'Environment :: Console',
'Intended Audience :: End Users/Desktop'
],
)

0 comments on commit 023510f

Please sign in to comment.