Skip to content

Commit 40d4dc2

Browse files
CJ-Wrightchiahaoliu
authored andcommitted
begin pep8 and push for travis
1 parent 264a5e3 commit 40d4dc2

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

setup.py

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,30 @@
1111

1212
# define distribution
1313
setup(
14-
name = "diffpy.pdfmorph",
15-
version = "1.0",
16-
namespace_packages = ['diffpy'],
17-
packages = find_packages(exclude=['tests', 'applications']),
18-
entry_points = {
19-
# define console_scripts here, see setuptools docs for details.
20-
'console_scripts' : [
21-
'pdfmorph = diffpy.pdfmorph.pdfmorphapp:main',
22-
],
23-
},
24-
test_suite = 'tests',
25-
install_requires = [],
26-
dependency_links = [
27-
'http://www.diffpy.org/packages/',
28-
],
29-
author = 'Simon J.L. Billinge',
30-
author_email = 'sb2896@columbia.edu',
31-
maintainer = 'Chris Farrow',
32-
maintainer_email = 'clf2121@columbia.edu',
33-
url = 'http://www.diffpy.org/',
34-
download_url = 'http://www.diffpy.org/packages/',
35-
description = "Tools for manipulating and comparing PDF profiles.",
36-
license = 'BSD',
37-
keywords = "diffpy PDF",
14+
name="diffpy.pdfmorph",
15+
version="1.0",
16+
namespace_packages=['diffpy'],
17+
packages=find_packages(exclude=['tests', 'applications']),
18+
entry_points={
19+
# define console_scripts here, see setuptools docs for details.
20+
'console_scripts': [
21+
'pdfmorph = diffpy.pdfmorph.pdfmorphapp:main',
22+
],
23+
},
24+
test_suite='tests',
25+
install_requires=[],
26+
dependency_links=[
27+
'http://www.diffpy.org/packages/',
28+
],
29+
author='Simon J.L. Billinge',
30+
author_email='sb2896@columbia.edu',
31+
maintainer='Chris Farrow',
32+
maintainer_email='clf2121@columbia.edu',
33+
url='http://www.diffpy.org/',
34+
download_url='http://www.diffpy.org/packages/',
35+
description="Tools for manipulating and comparing PDF profiles.",
36+
license='BSD',
37+
keywords="diffpy PDF",
3838
)
3939

4040
# End of file

0 commit comments

Comments
 (0)