-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (53 loc) · 1.79 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
59
60
61
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#-----------------------------------------------------------------------------
# :author: Pete R. Jemian
# :email: prjemian@gmail.com
# :copyright: (c) 2009-2019, Pete R. Jemian
#
# Distributed under the terms of the Creative Commons Attribution 4.0 International Public License.
#
# The full license is in the file LICENSE, distributed with this software.
#-----------------------------------------------------------------------------
from setuptools import setup
import os
import sys
import versioneer
# pull in some definitions from the package's __init__.py file
sys.path.insert(0, os.path.join('src', ))
import bcdamenu
verbose=1
long_description = open('README.rst', 'r').read()
setup (
name = bcdamenu.__package_name__,
version = versioneer.get_version(),
cmdclass = versioneer.get_cmdclass(),
license = bcdamenu.__license__,
description = bcdamenu.__description__,
long_description = long_description,
author = bcdamenu.__author_name__,
author_email = bcdamenu.__author_email__,
url = bcdamenu.__url__,
#download_url=bcdamenu.__download_url__,
keywords = bcdamenu.__keywords__,
platforms = 'any',
install_requires = bcdamenu.__install_requires__,
package_dir = {'': 'src'},
packages = ['bcdamenu', ],
package_data = {
'bcdamenu': [
'bcdamenu.ini',
'LICENSE.txt',
'about.ui',
],
},
classifiers = bcdamenu.__classifiers__,
entry_points = {
# create & install scripts in <python>/bin
'console_scripts': [
'bcdamenu=bcdamenu.launcher:main',
],
'gui_scripts': [
],
},
)