-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 915 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
from setuptools import setup, find_packages
from footprint import __version__
# Get the long description from the README file
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name='footprint',
description='footpritnt(足跡) is summary generator for Github/Gitlab.com activity.',
long_description=long_description,
version=__version__,
packages=find_packages(),
install_requires=[
'PyGithub',
'python-dateutil',
'tzlocal',
],
entry_points='''
[console_scripts]
foot = footprint.cli:main
''',
url='https://github.com/laughk/footprint',
author='Kei Iwasaki',
author_email='me@laughk.org',
license='MIT License',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
]
)