File tree Expand file tree Collapse file tree 1 file changed +7
-18
lines changed Expand file tree Collapse file tree 1 file changed +7
-18
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22# -*- coding: utf-8 -*-
3- """
4- Setup file for pysenal.
3+ from setuptools import setup , find_packages
54
6- This file was generated with PyScaffold 2.5.11, a tool that easily
7- puts up a scaffold for your new Python project. Learn more under:
8- http://pyscaffold.readthedocs.org/
9- """
5+ VERSION = "0.1.0"
106
11- import sys
12- from setuptools import setup
7+ requirments = []
138
14-
15- def setup_package ():
16- needs_sphinx = {'build_sphinx' , 'upload_docs' }.intersection (sys .argv )
17- sphinx = ['sphinx' ] if needs_sphinx else []
18- setup (setup_requires = ['six' , 'pyscaffold>=2.5a0,<2.6a0' ] + sphinx ,
19- use_pyscaffold = True )
20-
21-
22- if __name__ == "__main__" :
23- setup_package ()
9+ setup (
10+ install_requires = requirments ,
11+ version = VERSION
12+ )
You can’t perform that action at this time.
0 commit comments