-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 754 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 754 Bytes
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
from setuptools import setup, find_packages
import glob
setup(
name="fintools",
version="0.1",
package_dir={'': 'src'},
packages=['fintools'],
scripts=["bin/start_project"],
data_files=[
("fintools/templates", [
"src/fintools/templates/.gitignore",
"src/fintools/templates/setup.py",
"src/fintools/templates/README.md"]),
("fintools", ["src/fintools/project_layout.yaml"])
],
install_requires=["virtualenv>=13.0.1", "virtualenvwrapper>=4.5.1", "PyYAML>=3.11"],
package_data={
},
# metadata for upload to PyPI
author="",
author_email="",
description="",
license="PSF",
keywords="fintools",
url="", # project home page, if any
)