-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (44 loc) · 1.15 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ import absolute_import
from __future__ import print_function
import io
import re
from glob import glob
from os.path import basename
from os.path import dirname
from os.path import join
from os.path import splitext
from setuptools import setup, find_packages
abstract_requirements = [
'invoke',
'jinja2',
'click',
]
setup(
name='bimhaw',
version='0.1',
author="Samuel D. Lotz",
author_email="[email protected]",
description="Modern useful dotfile management",
license="MIT",
url="https://github.com/salotz/bimhaw",
classifiers=[
"Topic :: Utilities",
'Programming Language :: Python :: 3'
],
# package
packages=find_packages(where='src'),
package_dir={'' : 'src'},
# modules
# py_modules=[splitext(basename(path))[0]
# for path in glob('src/*.py')],
install_requires=abstract_requirements,
entry_points={
'console_scripts' : [
'bimhaw = bimhaw.cli:program.run',
'bimhaw_init = bimhaw.init:cli',
],
},
include_package_data=True,
)