-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 739 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 739 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
from setuptools import setup, find_packages
from os import path as op
from gitautopush import __version__
# read the contents of your README file
this_directory = op.abspath(op.dirname(__file__))
with open(op.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='gitautopush',
version=__version__,
author='John Lee and Chris Holdgraf',
author_email='[email protected]',
license='BSD',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'gitautopush = gitautopush.gitautopush:main',
]
},
)