-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (27 loc) · 839 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
from os import path
from codecs import open
from setuptools import setup, find_packages
NAME = 'oscartnetfixtures'
VERSION = '0.1.0'
DESCRIPTION = 'Fixture definitions and algorithms'
AUTHOR = 'Frangitron'
AUTHOR_EMAIL = 'contact@frangitron.com'
_here = path.abspath(path.dirname(__file__))
_requirements_filepath = path.join(_here, 'requirements.txt')
if path.isfile(_requirements_filepath):
with open(_requirements_filepath) as requirements_file:
_requirements = requirements_file.readlines()
else:
_requirements = list()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description="",
author=AUTHOR,
author_email=AUTHOR_EMAIL,
packages=find_packages(exclude=['tests']),
install_requires=_requirements,
include_package_data=True,
python_requires='>3.10',
)