forked from s3bw/fool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (28 loc) · 695 Bytes
/
setup.py
File metadata and controls
35 lines (28 loc) · 695 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
29
30
31
32
33
34
35
import os
from codecs import open
from setuptools import setup
from setuptools import find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
PATH_VERSION = os.path.join(HERE, 'fool', '__version__.py')
about = {}
with open(PATH_VERSION, 'r', 'utf-8') as f:
exec(f.read(), about)
setup(
name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
author='s.williamswynn.mail@gmail.com',
packages=find_packages(
include=[
'fool',
'fool.*',
],
),
install_requires=[
'flake8==3.7.7',
'pytest==4.3.0',
],
setup_requires=[
'pytest-runner',
],
)