-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (43 loc) · 1.4 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
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*- coding: utf-8 -*-
'''Setup script
'''
import os
from setuptools import setup, find_packages
WORK_DIR = os.path.dirname(os.path.abspath(__file__))
os.chdir(WORK_DIR)
os.sys.path.insert(1, WORK_DIR)
PKG_NAME = 'freshmail-python'
PKG_MOD = __import__('freshmail')
PKG_AUTHOR_NAME, PKG_AUTHOR_EMAIL = PKG_MOD.__author__.rsplit(' ', 1)
PKG_AUTHOR_EMAIL = PKG_AUTHOR_EMAIL.strip('<>')
PKG_VERSION = PKG_MOD.__version__
PKG_CLASSIFIERS = PKG_MOD.__classifiers__
PKG_INFO = open(os.path.join(WORK_DIR, 'README.rst'), 'r').readlines()
PKG_DESC_SHORT = PKG_INFO[0]
PKG_DESC_LONG = ''.join(PKG_INFO)
PKG_LICENSE_FULL = open(os.path.join(WORK_DIR, 'LICENSE'), 'r').readlines()
PKG_LICENSE_NAME = PKG_LICENSE_FULL[0].strip()
PKG_REQS = open(os.path.join(WORK_DIR, 'requirements.txt')).readlines()
setup(
name=PKG_NAME,
version=PKG_VERSION,
author=PKG_AUTHOR_NAME,
author_email=PKG_AUTHOR_EMAIL,
url='http://github.com/soutys/freshmail-python',
maintainer=PKG_AUTHOR_NAME,
maintainer_email=PKG_AUTHOR_EMAIL,
description=PKG_DESC_SHORT,
long_description=PKG_DESC_LONG,
classifiers=PKG_CLASSIFIERS,
install_requires=PKG_REQS,
packages=find_packages(),
license=PKG_LICENSE_NAME,
zip_safe=False,
include_package_data=True,
package_data = {
'': ['VERSION'],
},
keywords='freshmail mailing',
test_suite='tests',
)
# vim: ts=4:sw=4:et:fdm=indent:ff=unix