-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (37 loc) · 1.29 KB
/
setup.py
File metadata and controls
executable file
·41 lines (37 loc) · 1.29 KB
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
36
37
38
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# **************************************************************************
# Copyright © 2017-2020 jianglin
# File Name: setup.py
# Author: jianglin
# Email: xiyang0807@gmail.com
# Created: 2017-07-14 22:07:06 (CST)
# Last Update: Tuesday 2020-08-18 02:27:58 (CST)
# By:
# Description:
# **************************************************************************
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='org-python',
version='0.3.2',
url='https://github.com/honmaple/org-python',
license='BSD',
author='honmaple',
author_email='xiyang0807@gmail.com',
description='convert orgmode to html based on python.',
long_description=read('README.rst'),
packages=['orgpython'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[],
classifiers=[
'Environment :: Web Environment', 'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent', 'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
])