Skip to content

Commit

Permalink
STY setup.py to PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Clark committed Sep 12, 2019
1 parent 151adb1 commit 8155494
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,21 @@
with open('LICENSE') as f:
license_text = f.read()

setup(name='twined',
version='0.0.1',
py_modules=[],
install_requires=[],
url='https://www.github.com/octue/twined',
license=license_text,
author='Octue (github: octue)',
description='A library to help digital twins talk to one another.',
long_description=readme_text,
packages=find_packages(exclude=('tests', 'docs')),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)
setup(
name='twined',
version='0.0.1',
py_modules=[],
install_requires=[],
url='https://www.github.com/octue/twined',
license=license_text,
author='Octue (github: octue)',
description='A library to help digital twins talk to one another.',
long_description=readme_text,
packages=find_packages(exclude=('tests', 'docs')),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)

0 comments on commit 8155494

Please sign in to comment.