-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (31 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
from os import path
from codecs import open
from setuptools import setup, find_packages
# Get the directory where this current file is saved
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='changelog-neuropoly',
version='1.1.0',
python_requires='>=3.5',
description='Create a changelog file from all the merged pull requests.',
url='https://github.com/neuropoly/changelog',
author='NeuroPoly Lab, Polytechnique Montreal',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
keywords='',
install_requires=['requests'],
packages=find_packages(exclude=['.git']),
include_package_data=True,
entry_points={
'console_scripts': [
'changelog=changelog.changelog:main',
],
},
)