forked from BCDA-APS/pvMail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.21 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
41
42
43
44
45
#!/usr/bin/env python
'''packaging for PvMail'''
from setuptools import setup
import os
import sys
import versioneer
# make sure our development source is found FIRST!
sys.path.insert(0, os.path.abspath('./src'))
import PvMail
setup(
name = 'PvMail',
version = versioneer.get_version(),
cmdclass = versioneer.get_cmdclass(),
author = PvMail.__author__,
author_email = PvMail.__author_email__,
url = PvMail.__url__,
license = PvMail.__license__,
description = PvMail.__description__,
long_description = PvMail.__description__,
keywords = PvMail.__keywords__,
classifiers = PvMail.__classifiers__,
platforms = 'any',
install_requires = PvMail.__install_requires__,
packages = ['PvMail',],
package_dir = {
'PvMail': 'src/PvMail',
},
package_data = {
'PvMail': [
'test.db',
'resources/*',
'LICENSE',
'VERSION',
],
},
entry_points = {
# create & install console_scripts in <python>/bin
'console_scripts': PvMail.__console_scripts__,
},
zip_safe = False,
)