-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.18 KB
/
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
28
29
30
31
32
33
from setuptools import setup
import sys
with open('README.rst') as fd:
long_description = fd.read()
setup(
name='jailconf',
version='0.2.2',
packages=['jailconf'],
install_requires = ['ply>=3.9'],
python_requires='>=3.0',
author = 'Benjamin Le Forestier',
author_email = '[email protected]',
url = 'https://github.com/leforestier/jailconf',
keywords = ["jail.conf", "parse", "edit", "configuration", "freebsd", "jail"],
description = "Parse and edit your FreeBSD jail.conf file",
long_description = long_description,
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Systems Administration',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)