-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 863 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
# -*- coding: utf-8 -*-
import setuptools
with open('requirements.txt', 'r') as requirements_file:
requirements = requirements_file.read()
setuptools.setup(
name='satsie',
version='1.0.0',
author='vjyq',
author_email='[email protected]',
description='a tool to check for your subscription updates.',
url='https://github.com/vjyq/satsie.git',
install_requires=requirements,
packages=setuptools.find_packages(include=[
'satsie',
'satsie.settings',
'satsie.subscription',
'satsie.utils',
]),
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
],
test_suite='./satsie/tests',
entry_points={
'console_scripts': [
'satsie=satsie.utils:cli',
],
},
)