forked from diffpy/diffpy.pdfmorph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (34 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# Installation script for diffpy.pdfmorph
"""pdfmorph - tools for manipulating and comparing PDF data.
Packages: diffpy.pdfmorph
"""
from setuptools import setup, find_packages
# define distribution
setup(
name="diffpy.pdfmorph",
version='0.0.1',
namespace_packages=['diffpy'],
packages=find_packages(exclude=['tests', 'applications']),
entry_points={
# define console_scripts here, see setuptools docs for details.
'console_scripts': [
'pdfmorph = diffpy.pdfmorph.pdfmorphapp:main',
],
},
test_suite='tests',
install_requires=[],
dependency_links=[
'http://www.diffpy.org/packages/',
],
author='Simon J.L. Billinge',
author_email='[email protected]',
maintainer='Chris Farrow',
maintainer_email='[email protected]',
url='http://www.diffpy.org/',
download_url='http://www.diffpy.org/packages/',
description="Tools for manipulating and comparing PDF profiles.",
license='BSD',
keywords="diffpy PDF",
)
# End of file