Skip to content

Commit

Permalink
packaging improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Stephano-Shachter committed Jan 19, 2019
1 parent af01c90 commit f02a35b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
fastprocess/__pycache__/
build
venv
28 changes: 18 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,23 @@
from setuptools import setup

setup(
name = 'fastprocess',
version = '0.1.0',
author = 'Dylan Stephano-Shachter',
author_email = '[email protected]',
description = ('A fast subprocess library'),
license = 'LGPL',
url = 'https://github.com/dstathis/fastprocess',
packages = ['fastprocess'],
long_description = open(
name='fastprocess',
version='0.1.0',
author='Dylan Stephano-Shachter',
author_email='[email protected]',
description=('A fast subprocess library'),
license='LGPL',
url='https://github.com/dstathis/fastprocess',
packages=['fastprocess'],
long_description=open(
os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README.md')
).read()
).read(),
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python',
'Operating System :: POSIX',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)

0 comments on commit f02a35b

Please sign in to comment.