-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 738 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 738 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('VERSION') as f:
version = f.read()
with open('requirements.txt') as f:
requirements = []
for line in f.readlines():
requirements.append(line)
setup(
name='aoc',
version=version,
description='Advent Of Code',
long_description='Advent Of Code',
author='[email protected]',
author_email='[email protected]',
url='https://github.com/MattMulhern',
packages=find_packages(exclude=('tests', 'docs')),
setup_requires=['setuptools', 'wheel'],
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)