-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.14 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.14 KB
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
import versioneer
from setuptools import setup, find_packages
setup(
name='epics_build_analysis',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
# Author details
author='SLAC National Accelerator Laboratory',
packages=find_packages(),
package_dir={'epics_build_analysis':'epics_build_analysis',
'epics_build_analysis_launcher':'epics_build_analysis_launcher'},
description='Compare child directory listings between two parent directories',
url='https://github.com/hmbui/epics_build_analysis',
entry_points={
'gui_scripts': [
'epics_build_analysis=epics_build_analysis_launcher.main:main'
]
},
license='BSD',
include_package_data=True,
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)