summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2018-09-18 17:36:24 +0200
committerThomas Waldmann <tw@waldmann-edv.de>2018-09-18 17:36:24 +0200
commitc7d39d0be354bb8ed789d06aa0c6f97f49168c64 (patch)
tree072412957ca9e2a007fdf58ed1a2687910334774
parent7207b31b2b71c0e93fdc694ae0e2cfcc348000de (diff)
downloadxstatic-git-c7d39d0be354bb8ed789d06aa0c6f97f49168c64.tar.gz
cosmetic changes to setup.py
-rw-r--r--setup.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/setup.py b/setup.py
index 3ae5f03..ed98961 100644
--- a/setup.py
+++ b/setup.py
@@ -3,19 +3,19 @@
"""
XStatic - setup.py
-
-Works with: setuptools
"""
-import os.path
+import os
+
+from setuptools import setup, find_packages
+
# The README.txt file should be written in reST so that PyPI can use
# it to generate your project's PyPI page.
-readme_path = os.path.join(os.path.dirname(os.path.abspath(__file__)),
- 'README.txt')
+readme_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README.txt')
+
with open(readme_path) as f:
long_description = f.read()
-from setuptools import setup, find_packages
setup(
name='XStatic',