-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dylan Stephano-Shachter
committed
Jan 19, 2019
1 parent
af01c90
commit f02a35b
Showing
2 changed files
with
20 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
fastprocess/__pycache__/ | ||
build | ||
venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
] | ||
) |