-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (30 loc) · 1.01 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This Source Code Form is subject to the terms of the
# Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed
# with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'LICENSE.txt'), encoding='utf-8') as f:
license = f.read()
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pomolight',
version='0.1.0',
description='Pomodoro technique with traffic-light indication',
long_description=long_description,
url='https://github.com/anticodeninja/pomolight',
maintainer='anticodeninja',
author='anticodeninja',
license=license,
packages=find_packages(),
install_requires = [],
entry_points={
'console_scripts': [
'pomolight=pomolight:main',
],
},
)