-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (39 loc) · 1.32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
setup(
dependency_links=[],
name="explicitdev",
version="2020.5.9",
description="Framework for analyse jira issues and other useful services.",
author="Sergey Chernyak",
author_email="[email protected]",
python_requires=">=3.6.0",
url="https://github.com/onyxim/explicitdev",
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[
"jira",
"sqlalchemy",
"attrs",
"psycopg2",
"click",
"pytz",
"gspread",
],
extras_require={"dev": ["pipenv-setup", "pytest", "coverage",],},
include_package_data=True,
license="Apache License 2.0",
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: PyPy",
],
)