Creating a new setup.py
This commit is contained in:
parent
99c8da07d0
commit
94c94c2071
2 changed files with 42 additions and 0 deletions
37
setup.py
Normal file
37
setup.py
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import os
|
||||
from setuptools import setup
|
||||
|
||||
# Utility function to read the README file.
|
||||
# Used for the long_description. It's nice, because now 1) we have a top level
|
||||
# README file and 2) it's easier to type in the README file than to put a raw
|
||||
# string in below ...
|
||||
def read(fname):
|
||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||
|
||||
setup(
|
||||
name='secretary',
|
||||
version='0.0.1',
|
||||
url='https://github.com/christopher-ramirez/secretary',
|
||||
license='BSD',
|
||||
author='Christopher Ramírez',
|
||||
author_email='mail@example.com',
|
||||
description=('Take the power of Jinja2 templates to OpenOffice and '
|
||||
'LibreOffice and create reports in your web applications'),
|
||||
long_description=read('README.md'),
|
||||
py_modules=['secretary'],
|
||||
platforms='any',
|
||||
install_requires=[
|
||||
'Jinja2',
|
||||
],
|
||||
classifiers=[
|
||||
'Environment :: Web Environment',
|
||||
'Intended Audience :: End Users/Desktop',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
'Development Status :: 3 - Alpha',
|
||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||
'Topic :: Office/Business',
|
||||
'Topic :: Utilities',
|
||||
]
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue