-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 767 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 767 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
from setuptools import setup, find_packages
import os
import sys
with open("requirements.txt", "r") as f:
install_requires = f.read().splitlines()
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="forecastga",
version="0.1.15",
description="Automated Google Analytics Time Series in Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jroakes/forecastga.git",
author="jroakes",
author_email="jroakes@gmail.com",
license="MIT",
packages=find_packages("src"),
package_dir={"": "src"},
requires_python=">=3.6.2",
install_requires=install_requires,
include_package_data=True,
zip_safe=False,
)