-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 856 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 856 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
27
28
29
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from python_gist_note.gn import version
# Read the long description from the README file.
_setup_folder = os.path.dirname(__file__)
with open(os.path.join(_setup_folder, 'README.rst')) as readme_file:
long_description = readme_file.read()
setup(
name='python-gist-note',
version=version,
keywords=('note', 'gist', 'gist-note', 'gn', 'code share'),
description='just a simple code sharing tool powered by gist.',
long_description=long_description,
url='https://github.com/tonghuashuai/python-gist-note',
license='MIT License',
install_requires=['requests'],
scripts=['python_gist_note/gn'],
author='tonghs',
author_email='tonghuashuai@gmail.com',
packages=find_packages(),
platforms='any',
)