-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (30 loc) · 831 Bytes
/
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
#!/usr/bin/env python
import os
import fnmatch
from distutils.core import setup
from pip.req import parse_requirements
import pip.download
package_root = os.path.dirname(os.path.abspath(__file__))
install_reqs = parse_requirements(os.path.join(package_root, 'requirements.txt'), session=pip.download.PipSession())
reqs = [str(ir.req) for ir in install_reqs]
entry_points = {
'console_scripts': [
'merge-fs = merge_fs:main',
],
}
exclude_patterns = [
'*~',
]
setup(
name='fluxo-agency',
version='1.0',
description="",
author="Fluxo Agency",
author_email="[email protected]",
maintainer="Delaporte Michael",
maintainer_email="[email protected]",
py_modules=['merge_fs'],
install_requires=reqs,
entry_points=entry_points,
include_package_data=True,
)