-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 848 Bytes
/
setup.py
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
from setuptools import setup
import pymod
with open('README.md', 'r', encoding='utf-8') as fd:
setup(
name='pymod',
version=pymod.__version__,
author='chengscott',
maintainer='chengscott',
description='Simple Environment Variable Manager',
long_description=fd.read(),
long_description_content_type='text/markdown',
url='https://github.com/chengscott/pymod',
license='BSD',
packages=['pymod'],
entry_points={
'console_scripts': ['pymod = pymod:run_main'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Topic :: System :: Shells',
],
)