-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 901 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 901 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
30
#from distutils.core import setup
from setuptools import setup, find_packages
from distutils.extension import Extension
import re
import os
import codecs
#print(find_version("deepgmap", "__init__.py"))
setup(
name='view_columns',
#version=VERSION,
version="1.0.0",
description='Viewing a file containing a lot of columns',
author='Koh Onimaru',
author_email='koh.onimaru@gmail.com',
url='',
scripts=['bin/view_columns',
],
#packages=find_packages(),
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: Apache Software License ',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
)